| 20 | package config |
| 21 | |
| 22 | type Config struct { |
| 23 | Proxy ProxyS `mapstructure:"proxy"` |
| 24 | RedisDB RedisDBS `mapstructure:"redisdb"` |
| 25 | PprofDebug PprofDebugS `mapstructure:"pprof_debug"` |
| 26 | Log LogS `mapstructure:"log"` |
| 27 | IPWhiteList IPWhiteListS `mapstructure:"ip_white_list"` |
| 28 | Cache CacheS `mapstructure:"cache"` |
| 29 | IgnoreCMD IgnoreCMDS `mapstructure:"ignore_cmd"` |
| 30 | |
| 31 | P2P P2PS `mapstructure:"p2p"` |
| 32 | } |
| 33 | |
| 34 | type P2PS struct { |
| 35 | Enable bool `mapstructure:"enable" json:"enable"` |
nothing calls this directly
no outgoing calls
no test coverage detected