Make ACL policy part of the config struct

This commit is contained in:
Kristoffer Dalby 2022-05-31 12:50:16 +02:00
parent 5bfae22c8f
commit 24e4787a64
2 changed files with 16 additions and 0 deletions

6
app.go
View file

@ -116,6 +116,8 @@ type Config struct {
LogTail LogTailConfig
CLI CLIConfig
ACL ACLConfig
}
type OIDCConfig struct {
@ -152,6 +154,10 @@ type CLIConfig struct {
Insecure bool
}
type ACLConfig struct {
PolicyPath string
}
// Headscale represents the base app of the service.
type Headscale struct {
cfg Config