1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-24 13:48:49 +08:00
hybridgroup.gobot/adaptor.go

10 lines
128 B
Go
Raw Normal View History

2013-10-22 16:45:31 -07:00
package gobot
2013-10-23 22:00:03 -07:00
type Adaptor interface {
Finalize() []error
Connect() []error
Name() string
Port() string
String() string
2014-06-13 10:46:58 -07:00
}