mirror of
https://github.com/status-im/keycard-go.git
synced 2025-01-19 00:10:55 +00:00
8 lines
147 B
Go
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)
|
|
}
|