diff --git a/app/types.go b/app/types.go
index 1a8aa98..acab2fc 100644
--- a/app/types.go
+++ b/app/types.go
@@ -14,37 +14,10 @@ type Host struct {
 	Memory   Resource
 	Swap     Resource
 	Hardware map[string]*HostSuperDevice
-	//QEMU     map[uint]*QEMUInstance
-	//LXC      map[uint]*LXCInstance
 	Instance map[uint]*Instance
 	node     *proxmox.Node
 }
 
-/*
-type QEMUInstance struct {
-	Name     string
-	Proctype string
-	Cores    uint64
-	Memory   uint64
-	Drive    map[uint]*Volume
-	Disk     map[uint]*Volume
-	Net      map[uint]*Net
-	Device   map[uint]*InstanceDevice
-	vm       *proxmox.VirtualMachine
-}
-
-type LXCInstance struct {
-	Name     string
-	Cores    uint64
-	Memory   uint64
-	Swap     uint64
-	RootDisk *Volume
-	MP       map[uint]*Volume
-	Net      map[uint]*Net
-	ct       *proxmox.Container
-}
-*/
-
 type InstanceType bool
 
 const (