1Panel/core/utils/xpack/xpack.go
ssongliu fecba858a5
Some checks failed
sync2gitee / repo-sync (push) Failing after -7m39s
feat: 备份账号增删改查操作同步到节点 (#6081)
2024-08-09 10:30:39 +00:00

18 lines
306 B
Go

//go:build !xpack
package xpack
import (
"github.com/1Panel-dev/1Panel/core/app/model"
"github.com/gin-gonic/gin"
)
func Proxy(c *gin.Context, currentNode string) error {
return nil
}
type Node struct{}
func SyncBackupOperation(operate string, accounts []model.BackupAccount) error {
return nil
}