2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 16:10:59 +08:00
Files
panel/pkg/types/postgres.go
2024-06-28 04:01:46 +08:00

13 lines
252 B
Go

package types
type PostgresUser struct {
Role string `json:"role"`
Attributes []string `json:"attributes"`
}
type PostgresDatabase struct {
Name string `json:"name"`
Owner string `json:"owner"`
Encoding string `json:"encoding"`
}