summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-04 20:22:23 +0200
committerxengineering <me@xengineering.eu>2024-05-04 20:22:23 +0200
commitc6fbbbded8463fc94e5af223246eac97d538a9e5 (patch)
tree0ada93ea3746197968964edf6d95f930f398e0c8 /main.go
parent7d8899e1d2bf45511d10670dd9a6ad386afb8da1 (diff)
downloadceres-c6fbbbded8463fc94e5af223246eac97d538a9e5.tar
ceres-c6fbbbded8463fc94e5af223246eac97d538a9e5.tar.zst
ceres-c6fbbbded8463fc94e5af223246eac97d538a9e5.zip
model: Add storage.Exists() and storage.Create()
These new methods provide essential functionality related to the storage folder.
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.go b/main.go
index 937fa8e..da06f8e 100644
--- a/main.go
+++ b/main.go
@@ -31,6 +31,9 @@ func main() {
}
storage := model.Storage{Path: config.StorageFilePath}
+ if !storage.Exists() {
+ storage.Create()
+ }
storage.Init(gitDescribe)
model.InitDatabase(config.StorageFilePath)