Files
cloudpods/pkg/mcclient/modules/mod_hostwires.go
T
2018-08-01 14:13:23 +08:00

16 lines
286 B
Go

package modules
var (
Hostwires JointResourceManager
)
func init() {
Hostwires = NewJointComputeManager("hostwire", "hostwires",
[]string{"Host_ID", "Host", "Wire_ID", "Wire",
"Bridge", "Interface", "Mac_addr"},
[]string{},
&Hosts,
&Wires)
registerCompute(&Hostwires)
}