mirror of
https://github.com/1f349/lavender.git
synced 2024-12-22 07:34:06 +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"`
|
||
|
}
|