type AppConfig struct {
Serve string `mapstructure:"serve"`
Port int `mapstructure:"port"`
Socket string `mapstructure:"socket"`
Cookie string `mapstructure:"cookie"`
SessionLifetime int `mapstructure:"session_lifetime"`
}
type RedisConfig struct {
Host string `mapstructure:"host"`
Port string `mapstructure:"port"`
Password string `mapstructure:"password"`
DB int `mapstructure:"db"`
}