1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-04 22:17:39 +08:00

14 lines
310 B
Go
Raw Normal View History

2014-04-29 13:20:32 -07:00
package adaptor
2013-10-23 22:00:03 -07:00
type Adaptor struct {
2014-01-26 18:55:27 -08:00
Name string `json:"name"`
Port string `json:"port"`
Connected bool `json:"Connected"`
Params map[string]interface{} `json:"params"`
2013-10-23 22:00:03 -07:00
}
type AdaptorInterface interface {
Finalize() bool
Connect() bool
2013-10-23 22:00:03 -07:00
}