mirror of
https://github.com/1f349/lavender.git
synced 2024-12-21 23:24:09 +00:00
15 lines
379 B
Go
15 lines
379 B
Go
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"`
|
|
}
|