mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-21 14:19:49 +08:00
16 lines
286 B
Go
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)
|
|
}
|