1Panel/core/utils/xpack/xpack.go

19 lines
306 B
Go
Raw Normal View History

2024-08-02 18:33:06 +08:00
//go:build !xpack
package xpack
import (
"github.com/1Panel-dev/1Panel/core/app/model"
2024-08-02 18:33:06 +08:00
"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
}