mirror of
https://github.com/1f349/lavender.git
synced 2024-11-09 22:32:48 +00:00
15 lines
484 B
Go
15 lines
484 B
Go
package main
|
|
|
|
import (
|
|
loginServiceManager "github.com/1f349/lavender/issuer"
|
|
"github.com/1f349/lavender/utils"
|
|
)
|
|
|
|
type startUpConfig struct {
|
|
Listen string `json:"listen"`
|
|
BaseUrl string `json:"base_url"`
|
|
Issuer string `json:"issuer"`
|
|
SsoServices []loginServiceManager.SsoConfig `json:"sso_services"`
|
|
AllowedClients []utils.JsonUrl `json:"allowed_clients"`
|
|
}
|