mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-21 05:53:29 +00:00
14 lines
281 B
Go
14 lines
281 B
Go
package routes
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/up9inc/mizu/agent/pkg/controllers"
|
|
)
|
|
|
|
// ReplayRoutes defines the group of replay routes.
|
|
func ReplayRoutes(app *gin.Engine) {
|
|
routeGroup := app.Group("/replay")
|
|
|
|
routeGroup.POST("/", controllers.ReplayRequest)
|
|
}
|