mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 19:37:18 +08:00
13 lines
252 B
Go
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"`
|
|
}
|