123456789101112131415161718192021 |
- package settings
- type Casdoor struct {
- Endpoint string `json:"endpoint" protected:"true"`
- ClientId string `json:"client_id" protected:"true"`
- ClientSecret string `json:"client_secret" protected:"true"`
- CertificatePath string `json:"certificate_path" protected:"true"`
- Organization string `json:"organization" protected:"true"`
- Application string `json:"application" protected:"true"`
- RedirectUri string `json:"redirect_uri" protected:"true"`
- }
- var CasdoorSettings = Casdoor{
- Endpoint: "",
- ClientId: "",
- ClientSecret: "",
- CertificatePath: "",
- Organization: "",
- Application: "",
- RedirectUri: "",
- }
|