mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-20 21:44:42 +00:00
* Update main.go, extensions.go, and 2 more files... * Update config_routes.go, entries_routes.go, and 7 more files...
15 lines
293 B
Go
15 lines
293 B
Go
package routes
|
|
|
|
import (
|
|
"github.com/up9inc/mizu/agent/pkg/controllers"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// MetadataRoutes defines the group of metadata routes.
|
|
func MetadataRoutes(app *gin.Engine) {
|
|
routeGroup := app.Group("/metadata")
|
|
|
|
routeGroup.GET("/version", controllers.GetVersion)
|
|
}
|