12 lines
230 B
Go
12 lines
230 B
Go
|
|
package global
|
||
|
|
|
||
|
|
import "go-admin/app/websocket"
|
||
|
|
|
||
|
|
var WebSocketHub *websocket.Hub
|
||
|
|
|
||
|
|
type AlarmLogNotice struct {
|
||
|
|
MachineId string `json:"machineId"`
|
||
|
|
BiosId string `json:"biosId"`
|
||
|
|
Content string `json:"content"`
|
||
|
|
}
|