From a494abd819a6b373ebcb2c86ca29c4f1c4f664ba Mon Sep 17 00:00:00 2001 From: Mohammed Rabil Date: Mon, 9 Sep 2024 11:20:26 +0000 Subject: [PATCH] Update comment --- pkg/store/store.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/store/store.go b/pkg/store/store.go index db8f3c5..b0c814a 100644 --- a/pkg/store/store.go +++ b/pkg/store/store.go @@ -29,6 +29,7 @@ var KVS *TomlStore // Init initializes the TOML file, creates if not exist, otherwise reads and decodes to struct. func Init() error { KVS = &TomlStore{} + // store_vX.toml, where X is changed whenever new version requires re-login filename := filepath.Join(GetPathPrefix(), "store_v3.toml") KVS.mu.Lock()