1 package devicelayerkind 2 3 type DeviceLayerKind string 4 5 const ( 6 Drbd DeviceLayerKind = "DRBD" 7 Luks DeviceLayerKind = "LUKS" 8 Storage DeviceLayerKind = "STORAGE" 9 Nvme DeviceLayerKind = "NVME" 10 Exos DeviceLayerKind = "EXOS" 11 Writecache DeviceLayerKind = "WRITECACHE" 12 Cache DeviceLayerKind = "CACHE" 13 Bcache DeviceLayerKind = "BCACHE" 14 ) 15