type Base struct {
N float32 `goconf:"base:N"`
IP string `goconf:"base:ip"`
Client string `goconf:"base:client"`
CheckTime time.Duration `goconf:"base:checktime"`
SyncTime time.Duration `goconf:"base:synctime"`
}
type MySql struct {
Host string `goconf:"mysql:host"`
User string `goconf:"mysql:user"`
Pass string `goconf:"mysql:pass"`
Db string `goconf:"mysql:db"`
Table string `goconf:"mysql:table"`
}