8 lines
233 B
Go
8 lines
233 B
Go
package signature
|
|
|
|
type SignatureConf struct {
|
|
AppSecrets map[string]string `yaml:"AppSecrets"`
|
|
ValidWindowSeconds int64 `yaml:"ValidWindowSeconds"`
|
|
SkipPrefixes []string `yaml:"SkipPrefixes"`
|
|
}
|