biblio/conf/mysql.go

10 lines
275 B
Go
Raw Normal View History

2022-10-04 21:09:31 +08:00
package conf
type MySQL struct {
Host string `json:"host" yaml:"host"`
Port int `json:"port" yaml:"port"`
Database string `json:"database" yaml:"database"`
Username string `json:"username" yaml:"username"`
Password string `json:"password" yaml:"password"`
}