6 lines
112 B
Go
6 lines
112 B
Go
|
package config
|
||
|
|
||
|
type Auth struct {
|
||
|
SigningKey string `json:"signingKey" yaml:"signingKey" toml:"signingKey"`
|
||
|
}
|