feat: docker

This commit is contained in:
2025-03-28 13:50:10 +01:00
parent 86801ff8e0
commit 45696fd0a9
4 changed files with 33 additions and 1 deletions

View File

@@ -1,6 +1,9 @@
package main
import "log"
import (
"fmt"
"log"
)
func main() {
var db Database = &SqliteDatabase{}
@@ -9,5 +12,7 @@ func main() {
if err != nil {
log.Fatal("There was an error initializing the database %w", err)
}
fmt.Println("Starting healthr webserver.")
webServer(db)
}