diff options
author | Georg Pfuetzenreuter | 2024-09-21 16:06:04 +0200 |
---|---|---|
committer | Georg Pfuetzenreuter | 2024-09-28 19:33:17 +0200 |
commit | bde9a8defb73399e5174794d7bb20907f8716832 (patch) | |
tree | 53bfb785c90168e4c82f5a3c1e26a9a7e9f042d3 /go.mod | |
parent | f4a9607770cc4f84431332ab4cdb7e292d037275 (diff) | |
download | watbot-bde9a8defb73399e5174794d7bb20907f8716832.tar.gz watbot-bde9a8defb73399e5174794d7bb20907f8716832.tar.bz2 watbot-bde9a8defb73399e5174794d7bb20907f8716832.zip |
Implement configuration file
Abstract settings which commonly differ between instances to a YAML
based configuration file to allow for easy administration without the
need for modifying the source code.
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -3,8 +3,11 @@ module git.circuitco.de/self/watbot go 1.15 require ( + github.com/creasty/defaults v1.8.0 github.com/go-irc/irc v2.1.0+incompatible - github.com/namsral/flag v1.7.4-pre + github.com/stretchr/testify v1.9.0 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect + gopkg.in/yaml.v3 v3.0.1 gorm.io/driver/sqlite v1.1.4 gorm.io/gorm v1.20.11 ) |