package config import "github.com/zeromicro/go-zero/rest" type Config struct { rest.RestConf MySQL struct { Host string Port int User string Password string DBName string } Redis struct { Host string Port int Pass string TkDB int CasheDb int } Auth struct { AccessSecret string AccessExpire int64 } TkStore bool }