From 6b52b4bbc81c64b29daff043b83e21c38f332052 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 11 Feb 2023 13:46:45 +0100 Subject: Switch to global database pointer Passing the database pointer around is a lot of text and has no benefit. --- main.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index 0473231..3afdf49 100644 --- a/main.go +++ b/main.go @@ -3,13 +3,15 @@ package main import ( "log" + "database/sql" ) var config RuntimeConfig +var db *sql.DB func main() { config = GetRuntimeConfig() log.Printf("Starting ceres with config file '%s'\n", config.Path) - db := InitDatabase() - runServer(&db) + db = setupDatabase() + runServer() } -- cgit v1.2.3-70-g09d2