mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-21 09:19:16 +08:00
22 lines
452 B
Go
22 lines
452 B
Go
|
export namespace Backup {
|
||
|
export interface BackupInfo {
|
||
|
id: number;
|
||
|
type: string;
|
||
|
bucket: string;
|
||
|
vars: string;
|
||
|
varsJson: object;
|
||
|
}
|
||
|
export interface BackupOperate {
|
||
|
id: number;
|
||
|
type: string;
|
||
|
bucket: string;
|
||
|
credential: string;
|
||
|
vars: string;
|
||
|
}
|
||
|
export interface ForBucket {
|
||
|
type: string;
|
||
|
credential: string;
|
||
|
vars: string;
|
||
|
}
|
||
|
}
|