package config import "github.com/zeromicro/go-zero/zrpc" type JwtAuth struct { AccessSecret string AccessExpire int64 } type Config struct { zrpc.RpcServerConf DataSource string JwtAuth JwtAuth }