properly stubbed each library so it will compile

This commit is contained in:
Matthew Stobbs 2024-03-12 10:33:14 -06:00
parent 1bfdaf28c7
commit bb9feaef44
7 changed files with 26 additions and 16 deletions

View File

@ -0,0 +1 @@
package device

View File

@ -31,22 +31,27 @@ type Host struct {
Alive bool
Encrypted bool
Secure bool
//alldomains
//allinterfaces
//allnetworks
//alldevices
//allsecrets
//allstoragepools
//defineddomains
//definedinterfaces
//definednetworks
//definedstoragepools
//listdomains []int id
//listinterfaces []string interfacename
//listnetworks []string networkname
//listserets []string secretname
//liststoragepools []string storagepoolname
// alldomains
VMList []string
// allinterfaces
IFList []string
// allnetworks
NetList []string
// alldevices
DeviceList []string
// allsecrets
SecretList []string
// allstoragepools
StoragePoolList []string
// defineddomains
// definedinterfaces
// definednetworks
// definedstoragepools
// listdomains []int id
// listinterfaces []string interfacename
// listnetworks []string networkname
// listserets []string secretname
// liststoragepools []string storagepoolname
uri *URI
conn *libvirt.Connect

View File

1
lib/netif/lib.go Normal file
View File

@ -0,0 +1 @@
package netif

View File

@ -0,0 +1 @@
package network

View File

@ -0,0 +1 @@
package secret

View File

@ -0,0 +1 @@
package storagepool