aboutsummaryrefslogtreecommitdiffstats
path: root/internal/config.go
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2025-01-20 02:56:25 +0000
committerLeonardo Bishop <me@leonardobishop.com>2025-01-20 02:56:25 +0000
commitdc55f9c0097e1c36b85d7666071b840b902920e9 (patch)
treec8c8ae10a9e134810b3361aabc8a9d426d813808 /internal/config.go
parent5e7ce6cbae81a1b6e46fe6738dc10039a06bec95 (diff)
Add calendar support
Diffstat (limited to 'internal/config.go')
-rw-r--r--internal/config.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/config.go b/internal/config.go
index 9a1bc5f..564adbe 100644
--- a/internal/config.go
+++ b/internal/config.go
@@ -17,7 +17,8 @@ type Config struct {
Conference struct {
ScheduleURL string `yaml:"scheduleURL"`
} `yaml:"conference"`
- AcceptRegistrations bool `yaml:"acceptRegistrations"`
+ AcceptRegistrations bool `yaml:"acceptRegistrations"`
+ BaseURL string `yaml:"baseURL"`
}
func ReadConfig(configPath string, dst *Config) error {