From f9e0c58f3c0e90b987b7763f020ea5dcbf366779 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Mon, 9 Mar 2020 17:41:53 +0100 Subject: Fix revUserId (messenger) and implement search (messenger only for now) --- connector/irc/irc.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'connector/irc/irc.go') diff --git a/connector/irc/irc.go b/connector/irc/irc.go index bf36dfe..cf93893 100644 --- a/connector/irc/irc.go +++ b/connector/irc/irc.go @@ -198,6 +198,11 @@ func (irc *IRC) Leave(roomId RoomID) { irc.conn.Cmd.Part(ch) } +func (irc *IRC) SearchForUsers(query string) ([]UserSearchResult, error) { + // TODO + return nil, fmt.Errorf("Not implemented") +} + func (irc *IRC) Send(event *Event) (string, error) { if irc.conn == nil { return "", fmt.Errorf("Not connected") -- cgit v1.2.3