hybridgroup.gobot/adaptor.go

10 lines
128 B
Go
Raw Normal View History

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