From 4eb44edb59ff59997d000a7ca9983afd23d21236 Mon Sep 17 00:00:00 2001 From: Sam Date: Tue, 28 May 2019 16:34:56 -0400 Subject: [PATCH] Quick cleanup of keybase interface --- api/api.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/api.go b/api/api.go index 22e575f..a3f9f26 100644 --- a/api/api.go +++ b/api/api.go @@ -10,8 +10,8 @@ type Keybase struct { } type keybase interface { - ChatSend(user, message string) chatOutResult - ChatSendTeam(team, channel, message string) chatOutResult + ChatSend(user, message string) (chatOutResult, error) + ChatSendTeam(team, channel, message string) (chatOutResult, error) LoggedIn() bool Username() string Version() string