keycard-go/globalplatform/channel.go

9 lines
248 B
Go
Raw Normal View History

package globalplatform
import "github.com/status-im/status-go/smartcard/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)
}