OSDN Git Service

versoin1.1.9 (#594)
[bytom/vapor.git] / toolbar / common / config.go
1 package common
2
3 type MySQLConfig struct {
4         Connection MySQLConnection `json:"connection"`
5         LogMode    bool            `json:"log_mode"`
6 }
7
8 type MySQLConnection struct {
9         Host     string `json:"host"`
10         Port     uint   `json:"port"`
11         Username string `json:"username"`
12         Password string `json:"password"`
13         DbName   string `json:"database"`
14 }