This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/internal/config/struct.go
Jens Langhammer 988cf15b71 root: initial go proxy, update compose and helm
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
2021-05-03 09:39:09 +02:00

23 lines
267 B
Go

package config
type Config struct {
Debug bool
Web WebConfig
Paths PathsConfig
Log LogConfig
}
type WebConfig struct {
Listen string
ListenTLS string
}
type PathsConfig struct {
Media string
}
type LogConfig struct {
Level string
Format string
}