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