mirror of
https://github.com/status-im/keycard-go.git
synced 2025-02-19 07:17:00 +00:00
8 lines
149 B
Go
8 lines
149 B
Go
package lightwallet
|
|
|
|
import "github.com/status-im/status-go/smartcard/apdu"
|
|
|
|
type Channel interface {
|
|
Send(*apdu.Command) (*apdu.Response, error)
|
|
}
|