mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-04-24 13:48:49 +08:00
12 lines
138 B
Go
12 lines
138 B
Go
package gobot
|
|
|
|
type Adaptor interface {
|
|
Finalize() []error
|
|
Connect() []error
|
|
Name() string
|
|
}
|
|
|
|
type Porter interface {
|
|
Port() string
|
|
}
|