summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2026-03-23 17:25:50 +0100
committerxengineering <me@xengineering.eu>2026-03-23 17:25:50 +0100
commit321214bbe913d521e08e902a51344cbe2d223de9 (patch)
tree75ae0d0587dc74923c90883f285adb4008a979bd /config.go
parent1337229d4a202099d9847778507faa0f0f207f82 (diff)
downloadsia-server-321214bbe913d521e08e902a51344cbe2d223de9.tar
sia-server-321214bbe913d521e08e902a51344cbe2d223de9.tar.zst
sia-server-321214bbe913d521e08e902a51344cbe2d223de9.zip
Move default.json to configs/valid
Since the default configuration is a valid configuration it should belong to this new directory. This allows to continue with extending automated tests to test all configurations in this directory.
Diffstat (limited to 'config.go')
-rw-r--r--config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.go b/config.go
index d39efca..b3cd9dc 100644
--- a/config.go
+++ b/config.go
@@ -31,7 +31,7 @@ func init() {
mqttTopicPrefixRegexp = regexp.MustCompile(MQTT_TOPIC_PREFIX_REGEX)
}
-//go:embed configs/default.json
+//go:embed configs/valid/default.json
var defaultConfig []byte
type MQTTConfig struct {