mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
417 B
18 lines
417 B
package router
|
|
|
|
import (
|
|
v2 "github.com/1Panel-dev/1Panel/core/app/api/v2"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type AppLauncherRouter struct{}
|
|
|
|
func (s *AppLauncherRouter) InitRouter(Router *gin.RouterGroup) {
|
|
launcherRouter := Router.Group("launcher")
|
|
baseApi := v2.ApiGroupApp.BaseApi
|
|
{
|
|
launcherRouter.GET("/search", baseApi.SearchAppLauncher)
|
|
launcherRouter.POST("/change/show", baseApi.UpdateAppLauncher)
|
|
}
|
|
}
|