mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
21 lines
502 B
Go
21 lines
502 B
Go
package settings
|
|
|
|
type Casdoor struct {
|
|
Endpoint string `json:"endpoint"`
|
|
ClientId string `json:"client_id"`
|
|
ClientSecret string `json:"client_secret"`
|
|
Certificate string `json:"certificate"`
|
|
Organization string `json:"organization"`
|
|
Application string `json:"application"`
|
|
RedirectUri string `json:"redirect_uri"`
|
|
}
|
|
|
|
var CasdoorSettings = Casdoor{
|
|
Endpoint: "",
|
|
ClientId: "",
|
|
ClientSecret: "",
|
|
Certificate: "",
|
|
Organization: "",
|
|
Application: "",
|
|
RedirectUri: "",
|
|
}
|