2013-10-23 07:45:31 +08:00
|
|
|
package gobot
|
2013-10-24 13:00:03 +08:00
|
|
|
|
2014-11-21 10:00:32 +08:00
|
|
|
type Adaptor interface {
|
2014-11-20 15:21:19 +08:00
|
|
|
Finalize() []error
|
|
|
|
Connect() []error
|
2014-07-04 10:52:31 +08:00
|
|
|
Name() string
|
2014-11-22 11:35:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type Porter interface {
|
2014-11-21 10:00:32 +08:00
|
|
|
Port() string
|
2014-06-14 01:46:58 +08:00
|
|
|
}
|