2018-10-05 11:53:35 +00:00
|
|
|
package globalplatform
|
2018-10-02 11:25:04 +00:00
|
|
|
|
2018-10-19 08:54:02 +00:00
|
|
|
import "github.com/status-im/smartcard-go/apdu"
|
2018-10-02 11:25:04 +00:00
|
|
|
|
2018-10-05 14:40:32 +00:00
|
|
|
// Channel is an interface with a Send method to send apdu commands and receive apdu responses.
|
2018-10-02 11:25:04 +00:00
|
|
|
type Channel interface {
|
|
|
|
Send(*apdu.Command) (*apdu.Response, error)
|
|
|
|
}
|