mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 06:47:20 +08:00
14 lines
272 B
Go
14 lines
272 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"`
|
|
CharSet string `json:"char_set"`
|
|
Collation string `json:"collation"`
|
|
}
|