diff options
author | xengineering <me@xengineering.eu> | 2024-05-04 20:07:35 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-04 20:07:35 +0200 |
commit | 7d8899e1d2bf45511d10670dd9a6ad386afb8da1 (patch) | |
tree | d46aa5c61bcb7db847e9da0c2700bfb06c14a55c /main.go | |
parent | 4c528668cc5d77c0859bdc237cef2e7c40b9b9d8 (diff) | |
download | ceres-7d8899e1d2bf45511d10670dd9a6ad386afb8da1.tar ceres-7d8899e1d2bf45511d10670dd9a6ad386afb8da1.tar.zst ceres-7d8899e1d2bf45511d10670dd9a6ad386afb8da1.zip |
model: Introduce type Storage
This new type definition will make it easier to handle the storage
directory of Ceres and related functionality which can be implemented
with methods.
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -30,7 +30,8 @@ func main() { os.Exit(0) } - model.InitStorage(config.StorageFilePath, gitDescribe) + storage := model.Storage{Path: config.StorageFilePath} + storage.Init(gitDescribe) model.InitDatabase(config.StorageFilePath) defer model.CloseDatabase() |