lavender/conf/conf.go
2024-09-13 15:31:40 +01:00

18 lines
510 B
Go

package conf
import (
"github.com/1f349/lavender/issuer"
"github.com/1f349/lavender/mail"
)
type Conf struct {
Listen string `yaml:"listen"`
BaseUrl string `yaml:"baseUrl"`
ServiceName string `yaml:"serviceName"`
Issuer string `yaml:"issuer"`
Kid string `yaml:"kid"`
Namespace string `yaml:"namespace"`
Mail mail.Mail `yaml:"mail"`
SsoServices []issuer.SsoConfig `yaml:"ssoServices"`
}