Explorar el Código

fix: incorrect endpoint path

Yeuoly hace 7 meses
padre
commit
3bb694e958
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      internal/server/http_server.go

+ 1 - 1
internal/server/http_server.go

@@ -22,7 +22,7 @@ func (app *App) server(config *app.Config) func() {
 	engine := gin.Default()
 	engine.GET("/health/check", controllers.HealthCheck)
 
-	endpointGroup := engine.Group("/endpoint")
+	endpointGroup := engine.Group("/e")
 	awsLambdaTransactionGroup := engine.Group("/backwards-invocation")
 	pluginGroup := engine.Group("/plugin/:tenant_id")
 	pprofGroup := engine.Group("/debug/pprof")