From 66b3894d870bc40d205d55198ddc1da95ec7dd29 Mon Sep 17 00:00:00 2001 From: Riley Date: Tue, 13 Jul 2021 12:36:23 -0700 Subject: [PATCH] remove hardcoded guild storage. --- fs.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fs.go b/fs.go index 7b49727..a233d0f 100644 --- a/fs.go +++ b/fs.go @@ -15,7 +15,8 @@ import ( // GuildsDir // The directory to use for reading and writing guild .json files. Defaults to ./guilds -var GuildsDir = "./guilds" +// todo remind me to abstract this into a database +var GuildsDir = "" // saveLock // A map that stores mutexes for each guild, which will be locked every time that guild's data is written