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

18 lines
239 B
Go
Raw Permalink Normal View History

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