etri-smartfarm-poc-controll.../model.go
2021-12-12 10:08:11 +09:00

16 lines
225 B
Go

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