keycard-go/channel.go
2018-10-19 14:46:54 +02:00

8 lines
147 B
Go

package smartcard
import "github.com/status-im/status-go/smartcard/apdu"
type Channel interface {
Send(*apdu.Command) (*apdu.Response, error)
}