From e11d0e14ec9f2dc0fe682a0cc0e40f9146860a56 Mon Sep 17 00:00:00 2001 From: Riccardo Berto Date: Thu, 27 May 2021 21:42:00 +0200 Subject: [PATCH] start HTTP server --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 872b462..0ae1180 100644 --- a/main.go +++ b/main.go @@ -11,5 +11,5 @@ func main() { database.Init() - controller.Init() + log.Fatal(controller.Init().Run("localhost:8000")) }