From c3410b78335469a95e7cc477b1d2d306fc6f2134 Mon Sep 17 00:00:00 2001 From: Evan Reichard Date: Sat, 18 Nov 2023 10:14:57 -0500 Subject: [PATCH] [fix] version --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 85f6748..a9f7785 100644 --- a/config/config.go +++ b/config/config.go @@ -31,7 +31,7 @@ type Config struct { func Load() *Config { return &Config{ - Version: "0.0.2", + Version: "0.0.1", DBType: trimLowerString(getEnv("DATABASE_TYPE", "SQLite")), DBName: trimLowerString(getEnv("DATABASE_NAME", "antholume")), ConfigPath: getEnv("CONFIG_PATH", "/config"),