diff options
author | xengineering <me@xengineering.eu> | 2024-05-04 20:22:23 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-04 20:22:23 +0200 |
commit | c6fbbbded8463fc94e5af223246eac97d538a9e5 (patch) | |
tree | 0ada93ea3746197968964edf6d95f930f398e0c8 /main.go | |
parent | 7d8899e1d2bf45511d10670dd9a6ad386afb8da1 (diff) | |
download | ceres-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.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -31,6 +31,9 @@ func main() { } storage := model.Storage{Path: config.StorageFilePath} + if !storage.Exists() { + storage.Create() + } storage.Init(gitDescribe) model.InitDatabase(config.StorageFilePath) |