5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-10 15:40:30 +00:00
matterbridge/vendor/github.com/matterbridge/gozulipbot
2019-02-13 00:29:34 +01:00
..
.gitignore Use mod vendor for vendored directory (backwards compatible) 2018-08-06 21:47:05 +02:00
bot.go Add vendor matterbridge/gozulipbot 2018-05-07 21:06:25 +02:00
flag.go Add vendor matterbridge/gozulipbot 2018-05-07 21:06:25 +02:00
message.go Add vendor matterbridge/gozulipbot 2018-05-07 21:06:25 +02:00
queue.go Do not panic on non-json response from server (zulip) 2019-02-13 00:29:34 +01:00
README.md Use mod vendor for vendored directory (backwards compatible) 2018-08-06 21:47:05 +02:00

GoZulipBot

gozulipbot is a library to interact with Zulip in Go. It is primarily targeted toward making bots.

Installation

go get github.com/ifo/gozulipbot

Usage

Make sure to add gozulipbot to your imports:

import (
  gzb "github.com/ifo/gozulipbot"
)

Check out the examples directory for more info.