diff options
author | xengineering <me@xengineering.eu> | 2024-10-21 21:30:12 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-10-21 21:34:31 +0200 |
commit | 72601b87ef040a3c6882368ac85c12c1ae705cd2 (patch) | |
tree | a8a3b9006b4ca865a9a6bd44d8161d519f97ccd6 /main.go | |
parent | 118e1c69057e4e7b6ab3e730d5628b4822ed4c4d (diff) | |
download | ceres-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.go | 22 |
1 files changed, 18 insertions, 4 deletions
@@ -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") } |