Files
soft_usite/config/jwt.go
T
2025-02-06 14:22:29 -05:00

12 lines
188 B
Go

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