2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 06:47:20 +08:00
Files
panel/pkg/types/mysql.go
2024-11-25 03:18:36 +08:00

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"`
}