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

17 lines
257 B
Go

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