config.go 167 B

1234567891011
  1. package config
  2. import "github.com/zeromicro/go-zero/zrpc"
  3. type Config struct {
  4. zrpc.RpcServerConf
  5. JwtAuth struct {
  6. AccessSecret string
  7. AccessExpire int64
  8. }
  9. }