1
0
mirror of https://github.com/volatiletech/authboss.git synced 2024-11-28 08:58:38 +02:00
authboss/config.go

15 lines
327 B
Go
Raw Normal View History

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() {
}