mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 04:37:17 +08:00
12 lines
194 B
Go
12 lines
194 B
Go
package types
|
|
|
|
type MySQLUser struct {
|
|
User string `json:"user"`
|
|
Host string `json:"host"`
|
|
Grants []string `json:"grants"`
|
|
}
|
|
|
|
type MySQLDatabase struct {
|
|
Name string `json:"name"`
|
|
}
|