mirror of
https://github.com/1f349/lavender.git
synced 2024-11-09 22:32:48 +00:00
22 lines
618 B
Go
22 lines
618 B
Go
package server
|
|
|
|
import (
|
|
"github.com/1f349/lavender/issuer"
|
|
"github.com/1f349/lavender/utils"
|
|
)
|
|
|
|
type Conf struct {
|
|
Listen string `json:"listen"`
|
|
BaseUrl string `json:"base_url"`
|
|
ServiceName string `json:"service_name"`
|
|
Issuer string `json:"issuer"`
|
|
SsoServices []issuer.SsoConfig `json:"sso_services"`
|
|
AllowedClients []AllowedClient `json:"allowed_clients"`
|
|
Users UserConfig `json:"users"`
|
|
}
|
|
|
|
type AllowedClient struct {
|
|
Url utils.JsonUrl `json:"url"`
|
|
Permissions []string `json:"permissions"`
|
|
}
|