summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-12-27 12:14:43 +0100
committerxengineering <me@xengineering.eu>2023-12-27 12:27:53 +0100
commitc452ca52b9c18303045db838c6cead62c1454172 (patch)
tree7828c41b7aa7df33d4bfc49649b01087f685e15f /main.go
parentaaf2bad8d3ab2a4f825c2d3db3f2d17de68e08b4 (diff)
downloadceres-c452ca52b9c18303045db838c6cead62c1454172.tar
ceres-c452ca52b9c18303045db838c6cead62c1454172.tar.zst
ceres-c452ca52b9c18303045db838c6cead62c1454172.zip
model: Implement database connection
The already implemented storage folder should contain a sqlite database to store most parts of the Ceres user data.
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 57204af..cba4416 100644
--- a/main.go
+++ b/main.go
@@ -7,4 +7,7 @@ import (
func main() {
model.InitStorage()
defer model.RemoveStorage()
+
+ model.InitDatabase()
+ defer model.CloseDatabase()
}