config.go 167 B

12345678910111213
  1. package config
  2. import (
  3. "github.com/zeromicro/go-zero/rest"
  4. )
  5. type Config struct {
  6. rest.RestConf
  7. JwtAuth struct {
  8. AccessSecret string
  9. AccessExpire int64
  10. }
  11. }