mirror of
https://github.com/volatiletech/authboss.git
synced 2025-01-08 04:03:53 +02:00
15 lines
327 B
Go
15 lines
327 B
Go
package authboss
|
|
|
|
// Config is a map to provide configuration key-values.
|
|
//
|
|
type Config struct {
|
|
MountPath string `json:"mountPath" xml:"mountPath"`
|
|
|
|
AuthLoginPageURI string `json:"authLoginPage" xml:"authLoginPage"`
|
|
AuthLogoutRedirect string `json:"authLogoutRedirect" xml:"authLogoutRedirect"`
|
|
}
|
|
|
|
func NewConfig() {
|
|
|
|
}
|