1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-02-01 22:48:06 +08:00
1Panel/core/utils/xpack/xpack.go

18 lines
368 B
Go
Raw Normal View History

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