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
Secure bool
// alldomains
VMList []string
// allinterfaces
IFList []string
// allnetworks
NetList []string
// alldevices
DeviceList []string
// allsecrets
SecretList []string
// allstoragepools
StoragePoolList []string
// defineddomains
// definedinterfaces
// definednetworks
@ -47,7 +53,6 @@ type Host struct {
// listserets []string secretname
// liststoragepools []string storagepoolname
uri *URI
conn *libvirt.Connect
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