keycard-go/lightwallet/channel.go

8 lines
149 B
Go
Raw Normal View History

2018-10-03 14:58:30 +00:00
package lightwallet
import "github.com/status-im/status-go/smartcard/apdu"
type Channel interface {
Send(*apdu.Command) (*apdu.Response, error)
}