package image

const (
	// ExtImg is a constant for the .img extenstion
	ExtImg = ".img"
	// ExtIso is a constant for the .iso extenstion
	ExtIso = ".iso"
	// ExtGz is a constant for the .gz extenstion
	ExtGz = ".gz"
	// ExtQcow2 is a constant for the .qcow2 extenstion
	ExtQcow2 = ".qcow2"
	// ExtVmdk is a constant for the .vmdk VMware extenstion
	ExtVmdk = ".vmdk"
	// ExtVdi is a constant for the .vdi VirtualBox extenstion
	ExtVdi = ".vdi"
	// ExtVhd is a constant for the .vhd Microsoft Virtual Server Virtual Hard Disk extenstion
	ExtVhd = ".vhd"
	// ExtVhdx is a constant for the .vhd Hyper-V Virtual Hard Disk V.2 extenstion
	ExtVhdx = ".vhdx"
	// ExtTar is a constant for the .tar extenstion
	ExtTar = ".tar"
	// ExtXz is a constant for the .xz extenstion
	ExtXz = ".xz"
	// ExtZst is a constant for the .zst extenstion
	ExtZst = ".zst"
	// ExtTarXz is a constant for the .tar.xz extenstion
	ExtTarXz = ExtTar + ExtXz
	// ExtTarGz is a constant for the .tar.gz extenstion
	ExtTarGz = ExtTar + ExtGz
)
