summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-10-21 21:30:12 +0200
committerxengineering <me@xengineering.eu>2024-10-21 21:34:31 +0200
commit72601b87ef040a3c6882368ac85c12c1ae705cd2 (patch)
treea8a3b9006b4ca865a9a6bd44d8161d519f97ccd6 /main.go
parent118e1c69057e4e7b6ab3e730d5628b4822ed4c4d (diff)
downloadceres-72601b87ef040a3c6882368ac85c12c1ae705cd2.tar
ceres-72601b87ef040a3c6882368ac85c12c1ae705cd2.tar.zst
ceres-72601b87ef040a3c6882368ac85c12c1ae705cd2.zip
model: Refactor public API of DB
This commit makes not externally needed methods private and adds error return values since something like log.Fatal() should be called outside this package since it is control-flow-related.
Diffstat (limited to 'main.go')
-rw-r--r--main.go22
1 files changed, 18 insertions, 4 deletions
diff --git a/main.go b/main.go
index 1d7d3e1..55425e4 100644
--- a/main.go
+++ b/main.go
@@ -34,15 +34,29 @@ func main() {
}
log.Printf("Storage directory: %s\n", storage.Path)
- db := model.OpenDB(filepath.Join(storage.Path, "ceres.sqlite3"))
- defer db.Close()
- err := db.Migrate()
+ db, err := model.OpenDB(filepath.Join(storage.Path, "ceres.sqlite3"))
+ if err != nil {
+ log.Fatalf("Failed to open database: %v", err)
+ }
+ defer func() {
+ err := db.Close()
+ if err != nil {
+ log.Println("Failed to close database")
+ } else {
+ log.Println("Closed database")
+ }
+ }()
+
+ err = db.Migrate()
if err != nil {
log.Fatal(err)
}
if flags.examples {
- db.CreateExamples()
+ err := db.CreateExamples()
+ if err != nil {
+ log.Fatalf("Failed to insert example recipes: %v", err)
+ }
log.Println("Created example recipes")
}