feat: app

This commit is contained in:
2025-03-27 11:09:56 +01:00
parent d02d210aff
commit 60942903ec
6 changed files with 319 additions and 0 deletions

13
main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import "log"
func main() {
var db Database = &SqliteDatabase{}
err := db.Initialize()
if err != nil {
log.Fatal("There was an error initializing the database %w", err)
}
webServer(db)
}