| 7 | ) |
| 8 | |
| 9 | type Config struct { |
| 10 | Server ServerC `yaml:"server"` |
| 11 | Debug DebugC `yaml:"debug"` |
| 12 | Mysql MysqlS `yaml:"mysql"` |
| 13 | UserList []UserInfo `yaml:"userlist"` |
| 14 | P2P P2PS `yaml:"p2p"` |
| 15 | } |
| 16 | |
| 17 | type ServerC struct { |
| 18 | Addr string `yaml:"addr"` |
nothing calls this directly
no outgoing calls
no test coverage detected