Add wallet interface and type

This commit is contained in:
Sam
2019-09-23 00:46:24 -04:00
parent e829386733
commit f3a507b8a8

View File

@ -556,6 +556,14 @@ type team interface {
MemberList() (TeamAPI, error)
}
// Wallet holds basic information about a wallet
type Wallet struct {
keybase *Keybase
}
type wallet interface {
}
type keybase interface {
ChatList() (ChatAPI, error)
CreateTeam(name string) (TeamAPI, error)