From bab44f8b9ee4ddefa93884affb7fe8821aad229a Mon Sep 17 00:00:00 2001 From: Sam Date: Sun, 3 Nov 2019 23:27:09 -0500 Subject: [PATCH] Add inputs to ChatList() method on keybase interface --- types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.go b/types.go index 660c44e..8adcaa3 100644 --- a/types.go +++ b/types.go @@ -656,7 +656,7 @@ type wallet interface { type keybase interface { AdvertiseCommand(advertisement BotAdvertisement) (ChatAPI, error) AdvertiseCommands(advertisements []BotAdvertisement) (ChatAPI, error) - ChatList() (ChatAPI, error) + ChatList(opts ...Channel) (ChatAPI, error) ClearCommands() (ChatAPI, error) CreateTeam(name string) (TeamAPI, error) NewChat(channel Channel) Chat