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

@ -32,11 +32,17 @@ type Host struct {
Encrypted bool Encrypted bool
Secure bool Secure bool
// alldomains // alldomains
VMList []string
// allinterfaces // allinterfaces
IFList []string
// allnetworks // allnetworks
NetList []string
// alldevices // alldevices
DeviceList []string
// allsecrets // allsecrets
SecretList []string
// allstoragepools // allstoragepools
StoragePoolList []string
// defineddomains // defineddomains
// definedinterfaces // definedinterfaces
// definednetworks // definednetworks
@ -47,7 +53,6 @@ type Host struct {
// listserets []string secretname // listserets []string secretname
// liststoragepools []string storagepoolname // liststoragepools []string storagepoolname
uri *URI uri *URI
conn *libvirt.Connect conn *libvirt.Connect
close chan struct{} close chan struct{}

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