diff options
| author | historia <[not public]> | 2026-06-30 02:17:22 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-30 02:17:22 -0400 |
| commit | 7a4b91304061777e7b3365b505d1e74878043d35 (patch) | |
| tree | 4440b95c6ed4425f19919a4e74890607d008feec /internal/config/config.go | |
| parent | 069d3c1c81d71042706372df153254487a765dfc (diff) | |
| download | thehouseoficarus-7a4b91304061777e7b3365b505d1e74878043d35.tar.gz | |
feat: web gui mapping and obj/item/mob placement improvements
Diffstat (limited to 'internal/config/config.go')
| -rw-r--r-- | internal/config/config.go | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/internal/config/config.go b/internal/config/config.go index 15f75d4..40f4891 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -100,9 +100,8 @@ type HTTPSConfig struct { } type AdminHTTPSConfig struct { - Enabled bool `yaml:"enabled"` - Port int `yaml:"port"` - AdminAccounts []string `yaml:"admin_accounts"` + Enabled bool `yaml:"enabled"` + Port int `yaml:"port"` } func Default() *Config { @@ -135,9 +134,8 @@ func Default() *Config { Port: 8443, }, AdminHTTPS: AdminHTTPSConfig{ - Enabled: false, - Port: 9090, - AdminAccounts: []string{}, + Enabled: false, + Port: 9090, }, } } |
