Browse Source

Add wallet interface and type

main
Sam 5 years ago
parent
commit
f3a507b8a8
  1. 8
      types.go

8
types.go

@ -556,6 +556,14 @@ type team interface { @@ -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)

Loading…
Cancel
Save