diff --git a/app/mix/controller/init.go b/app/mix/controller/init.go index 4cd48541..c5b365d1 100644 --- a/app/mix/controller/init.go +++ b/app/mix/controller/init.go @@ -54,8 +54,7 @@ import ( func Init(r *gin.Engine) { r.HandleMethodNotAllowed = true - r.GET("/", HelloWorld) - r.POST("/", HelloWorld) + r.Any("/", HelloWorld) // healthcheck r.GET("/healthcheck", Healthcheck)