mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-07-04 03:48:58 +00:00
13 lines
240 B
Go
13 lines
240 B
Go
package routes
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/up9inc/mizu/agent/pkg/controllers"
|
|
)
|
|
|
|
func QueryRoutes(ginApp *gin.Engine) {
|
|
routeGroup := ginApp.Group("/query")
|
|
|
|
routeGroup.POST("/validate", controllers.PostValidate)
|
|
}
|