From dfe7deff72ec77f798efe243c1c22bb63c523040 Mon Sep 17 00:00:00 2001 From: Georg Pfuetzenreuter Date: Thu, 10 Oct 2024 00:04:16 +0200 Subject: Configurable database path Allow the database file to reside in a user defined location instead of requiring it to be in the working directory. Signed-off-by: Georg Pfuetzenreuter --- main.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'main.go') diff --git a/main.go b/main.go index fb71444..1d13154 100644 --- a/main.go +++ b/main.go @@ -20,6 +20,7 @@ type Config struct { } type watConfig struct { + Database string `default:"wat.db" yaml:"database"` Nick string `yaml:"nick"` Pass string `yaml:"pass"` User string `yaml:"user"` @@ -99,6 +100,7 @@ func main() { Name: config.Name, } watConfig := wat.WatConfig{ + DatabasePath: config.Database, AutoJoinChannels: config.Channels.Join, PermittedChannels: config.Channels.Permitted, IgnoredHosts: config.Ignores.Hosts, -- cgit v1.2.3