9 lines
239 B
Go
Raw Normal View History

package globalplatform
2019-03-01 18:44:07 +01:00
import "github.com/status-im/keycard-go/apdu"
2018-10-05 16:40:32 +02:00
// Channel is an interface with a Send method to send apdu commands and receive apdu responses.
type Channel interface {
Send(*apdu.Command) (*apdu.Response, error)
}