diff options
Diffstat (limited to 'connector/irc/irc.go')
-rw-r--r-- | connector/irc/irc.go | 5 |
1 files changed, 5 insertions, 0 deletions
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") |