1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-04 22:17:39 +08:00
hybridgroup.gobot/adaptor.go
2014-11-21 19:35:01 -08:00

12 lines
138 B
Go

package gobot
type Adaptor interface {
Finalize() []error
Connect() []error
Name() string
}
type Porter interface {
Port() string
}