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

17 lines
257 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
2021-12-10 10:26:13 +00:00
Sname string
2021-12-10 06:45:28 +00:00
Iface io.ReadWriter
states map[string]interface{}
propsToSync []string
2021-12-10 01:14:34 +00:00
}
type RecvEvent struct {
Params map[string]interface{}
}