1
0

jwt.go 93 B

12345678
  1. package config
  2. type Jwt struct {
  3. Secret string
  4. Timeout int64
  5. }
  6. var JwtConfig = new(Jwt)