mirror of
https://github.com/acepanel/panel.git
synced 2026-02-06 02:37:16 +08:00
8 lines
144 B
Go
8 lines
144 B
Go
// Package services 备份服务
|
|
package services
|
|
|
|
type Backup interface {
|
|
BackupWebSite(string) error
|
|
BackupDatabase(string, string) error
|
|
}
|