mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-09-08 05:49:57 +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)
|
|
}
|