16 lines
241 B
Go
16 lines
241 B
Go
package component
|
|
|
|
import (
|
|
"joylink.club/ecs"
|
|
)
|
|
|
|
// NetworkSwitch 交换机
|
|
// 具体异常-通信中断、异常
|
|
type NetworkSwitch struct {
|
|
Normal bool //true-正常
|
|
}
|
|
|
|
var (
|
|
NetworkSwitchType = ecs.NewComponentType[NetworkSwitch]()
|
|
)
|