lavender/server/conf.go

14 lines
339 B
Go
Raw Normal View History

2023-10-08 15:24:59 +01:00
package server
import (
"github.com/1f349/lavender/issuer"
)
type Conf struct {
2024-02-07 01:18:17 +00:00
Listen string `json:"listen"`
BaseUrl string `json:"base_url"`
ServiceName string `json:"service_name"`
Issuer string `json:"issuer"`
SsoServices []issuer.SsoConfig `json:"sso_services"`
2023-10-08 15:24:59 +01:00
}