lavender/conf/conf.go

15 lines
379 B
Go
Raw Normal View History

2024-08-19 22:37:30 +01:00
package conf
import (
"github.com/1f349/lavender/issuer"
)
type Conf struct {
Listen string `yaml:"listen"`
BaseUrl string `yaml:"baseUrl"`
ServiceName string `yaml:"serviceName"`
Issuer string `yaml:"issuer"`
Kid string `yaml:"kid"`
SsoServices []issuer.SsoConfig `yaml:"ssoServices"`
}