From a88946bb7fcfc1632661eafc84eac0aa1c2573c3 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Wed, 24 Jul 2024 01:07:11 -0400 Subject: Update server configuration to disable serving frontend --- main.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'main.go') diff --git a/main.go b/main.go index 037963b..ed21361 100644 --- a/main.go +++ b/main.go @@ -7,6 +7,7 @@ import ( "net/http" "donetick.com/core/config" + "donetick.com/core/frontend" "github.com/gin-contrib/cors" "github.com/gin-gonic/gin" "go.uber.org/fx" @@ -77,6 +78,8 @@ func main() { fx.Provide(thing.NewWebhook), fx.Provide(thing.NewHandler), + fx.Provide(frontend.NewHandler), + // fx.Invoke(RunApp), fx.Invoke( chore.Routes, @@ -84,6 +87,7 @@ func main() { circle.Routes, thing.Routes, thing.Webhooks, + frontend.Routes, func(r *gin.Engine) {}, ), -- cgit