12345678910111213141516171819202122 |
- package main
- var GF GlobalConf
- type GlobalConf struct {
- Env EnvConf
- }
- type EnvConf struct {
- Addr string
- Dbname string
- Dbsize int
- Dbsave string
- Username string
- Password string
- Lastid int
- Localport string
- Esport int
- Path string
- Targetip string
- Autoid int
- Seoid int
- }
|