From 231328a6f9d0fe88b415822532c87d5c484617c9 Mon Sep 17 00:00:00 2001 From: Vikas Date: Sun, 30 Jun 2024 14:38:16 +0530 Subject: [PATCH] Update database file name in config --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 733e910..279a35f 100644 --- a/config/config.go +++ b/config/config.go @@ -3,7 +3,7 @@ package config var ( ServerAddr = ":8008" AppName = "PastePass" - DBPath = "pastepass.boltdb" + DBPath = "pastepass.db" ResetDB = false Version = "0.00-dev" )