keycard-go/globalplatform/channel.go

9 lines
241 B
Go
Raw Normal View History

package globalplatform
2018-10-19 08:54:02 +00:00
import "github.com/status-im/smartcard-go/apdu"
2018-10-05 14:40:32 +00: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)
}