12 lines
188 B
Go
Executable File
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"`
|
|
}
|