Browse Source

fix: incorrect endpoint path

Yeuoly 7 months ago
parent
commit
3bb694e958
1 changed files with 1 additions and 1 deletions
  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")