1Panel/core/utils/xpack/xpack.go
ssongliu 1215e3bb30
Some checks failed
sync2gitee / repo-sync (push) Failing after -8m7s
fix: 切换子节点请求方式 (#6195)
2024-08-21 07:14:50 +00:00

21 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) {}