1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-19 16:29:17 +08:00
1Panel/core/utils/xpack/xpack.go
2024-08-21 07:14:50 +00:00

22 lines
321 B
Go

//go:build !xpack
package xpack
import (
"github.com/gin-gonic/gin"
)
func Proxy(c *gin.Context, currentNode string) error {
return nil
}
func UpdateGroup(name string, group, newGroup uint) error {
return nil
}
func CheckBackupUsed(id uint) error {
return nil
}
func InitAgentRouter(Router *gin.RouterGroup) {}