mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 03:22:32 +08:00
8 lines
136 B
Go
8 lines
136 B
Go
package types
|
|
|
|
type MySQLUser struct {
|
|
User string `json:"user"`
|
|
Host string `json:"host"`
|
|
Grants []string `json:"grants"`
|
|
}
|