From 390642f9bbc12f0b435f343fc35f4a47c5ec7680 Mon Sep 17 00:00:00 2001
From: xengineering <me@xengineering.eu>
Date: Wed, 1 May 2024 13:20:22 +0200
Subject: Do not remove storage folder

This is not useful in production. Furthermore in the debug use case the
default storage path is now ./storage which can easily be removed by `rm
-rf storage`. This also allows to not remove the storage folder for
further analysis of the storage folder.
---
 model/storage.go | 9 ---------
 1 file changed, 9 deletions(-)

(limited to 'model')

diff --git a/model/storage.go b/model/storage.go
index e7d1fbc..bfebb6a 100644
--- a/model/storage.go
+++ b/model/storage.go
@@ -24,12 +24,3 @@ func InitStorage(path string, version string) {
 
 	log.Printf("Storage directory: %s\n", path)
 }
-
-func RemoveStorage(path string) {
-	var err error = os.RemoveAll(path)
-	if err != nil {
-		log.Printf("Failed to remove storage folder: %v\n", err)
-	} else {
-		log.Printf("Removed storage folder %s\n", path)
-	}
-}
-- 
cgit v1.2.3-70-g09d2