浏览代码

fix: incorrect endpoint path

Yeuoly 7 月之前
父节点
当前提交
3bb694e958
共有 1 个文件被更改,包括 1 次插入1 次删除
  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")