diff options
author | xengineering <me@xengineering.eu> | 2024-10-13 19:52:28 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-10-13 19:55:38 +0200 |
commit | 473052ed8f2c83052ed5b47a7f4cec68ac2621a6 (patch) | |
tree | 2d5da088c6879317734277350c873a258b4d1dac /main.go | |
parent | ed19b82335345833c5b8f5446237d559a3657a35 (diff) | |
download | ceres-473052ed8f2c83052ed5b47a7f4cec68ac2621a6.tar ceres-473052ed8f2c83052ed5b47a7f4cec68ac2621a6.tar.zst ceres-473052ed8f2c83052ed5b47a7f4cec68ac2621a6.zip |
model: Replace global db variable by custom type
Reducing global variables makes it easier to understand functions
independently of the rest of the code.
Adding the new model.DB type as a custom variant of the sql.DB type
makes it possible to write methods for the database which makes the code
way more readable.
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -34,16 +34,16 @@ func main() { } log.Printf("Storage directory: %s\n", storage.Path) - model.ConnectDatabase(filepath.Join(storage.Path, "ceres.sqlite3")) - defer model.DisconnectDatabase() - model.MigrateDatabase(version) + db := model.OpenDB(filepath.Join(storage.Path, "ceres.sqlite3")) + defer db.Close() + db.Migrate(version) if flags.examples { - model.InjectExampleRecipes() - log.Println("Added example recipes") + db.CreateExamples() + log.Println("Created example recipes") } - server := NewServer(config.HttpAddress) + server := NewServer(config.HttpAddress, db) go server.Start() defer server.Stop() |