Skip to content

Commit

Permalink
fix: incorrect endpoint path
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeuoly committed Dec 17, 2024
1 parent a00e6ad commit 3bb694e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/server/http_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 3bb694e

Please sign in to comment.