From f3a507b8a85b66836ce3fef98f9911b10f01e4d1 Mon Sep 17 00:00:00 2001 From: Sam Date: Mon, 23 Sep 2019 00:46:24 -0400 Subject: [PATCH] Add wallet interface and type --- types.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/types.go b/types.go index 1543097..a944613 100644 --- a/types.go +++ b/types.go @@ -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)