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

18 lines
239 B
Go

package manager
import "io"
type _device struct {
UUID string
IfaceName string
Iface io.ReadWriter
states map[string]interface{}
propsToSync []string
}
type RecvEvent struct {
Params map[string]interface{}
}