1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-22 09:49:16 +08:00

18 lines
283 B
Go
Raw Normal View History

2022-08-30 17:59:59 +08:00
export enum CompressType {
Zip = 'zip',
Gz = 'gz',
Bz2 = 'bz2',
Tar = 'tar',
TarGz = 'tarGz',
Xz = 'xz',
}
export enum CompressExtention {
zip = '.zip',
gz = '.gz',
bz2 = '.tar.bz2',
tar = '.tar',
tarGz = '.tar.gz',
xz = '.tar.xz',
}