etri-smartfarm-poc-controll.../model.go

16 lines
225 B
Go
Raw Permalink Normal View History

2021-12-10 01:14:34 +00:00
package manager
import "io"
type _device struct {
2021-12-12 01:08:11 +00:00
UUID string
IfaceName string
Sname string
Iface io.ReadWriter
states map[string]interface{}
2021-12-10 01:14:34 +00:00
}
type RecvEvent struct {
Params map[string]interface{}
}