hybridgroup.gobot/driver.go

14 lines
207 B
Go

package gobot
type Driver struct {
Interval string
Pin string
Name string
Commands []string
Events map[string]chan interface{} `json:"-"`
}
type DriverInterface interface {
Start() bool
}