Documentation ¶
Index ¶
Constants ¶
View Source
const ( // DebugLevel logs are typically voluminous, and are usually disabled in // production. DebugLevel zapcore.Level = iota - 1 // InfoLevel is the default logging priority. InfoLevel // WarnLevel logs are more important than Info, but don't need individual // human review. WarnLevel // ErrorLevel logs are high-priority. If an application is running smoothly, // it shouldn't generate any error-level logs. ErrorLevel // DPanicLevel logs are particularly important errors. In development the // logger panics after writing the message. DPanicLevel // PanicLevel logs a message, then panics. PanicLevel // FatalLevel logs a message, then calls os.Exit(1). FatalLevel )
Variables ¶
View Source
var Conf *viper.Viper
Functions ¶
Types ¶
type RedisConf ¶
type RedisConf struct { RedisDefaultHost string RedisDefaultInitConns int RedisDefaultMaxConns int }
Redis配置
type ServerConf ¶
type ServerConf struct {
HttpPost string
}
Server配置
func LoadServer ¶
func LoadServer() *ServerConf
Click to show internal directories.
Click to hide internal directories.