Go: tracing framework (#17004)

### Summary

Tracing framework

---------

Signed-off-by: Jin Hai <haijin.chn@gmail.com>
This commit is contained in:
Jin Hai
2026-07-16 19:35:43 +08:00
committed by GitHub
parent f8cba62108
commit f8474a67f5
9 changed files with 91 additions and 81 deletions

View File

@@ -34,7 +34,6 @@ func NewRouter(handler *Handler) *Router {
// Setup setup routes
func (r *Router) Setup(engine *gin.Engine) {
SetupEERouter(engine)
// Healthz to get system health

View File

@@ -16,8 +16,9 @@
package admin
import "github.com/gin-gonic/gin"
import (
"github.com/gin-gonic/gin"
)
func SetupEERouter(engine *gin.Engine) {
}