Files
soft_usite/config/jwt.go
T
2025-04-24 02:07:47 +00:00

12 lines
188 B
Go
Executable File

package config
type JwtConfig struct {
Secret string `yaml:"secret"`
Expire string `yaml:"expire"`
}
type JwtSecrets struct {
App JwtConfig `yaml:"app"`
Api JwtConfig `yaml:"api"`
}