diff options
author | Wim <wim@42.be> | 2018-08-06 21:47:05 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2018-08-06 21:47:05 +0200 |
commit | 51062863a5c34d81e296cf15c61140911037cf3b (patch) | |
tree | 9b5e044672486326c7a0ca8fb26430f37bf4d83c /vendor/github.com/matterbridge/gozulipbot | |
parent | 4fb4b7aa6c02a54db8ad8dd98e4d321396926c0d (diff) | |
download | matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.tar.gz matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.tar.bz2 matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.zip |
Use mod vendor for vendored directory (backwards compatible)
Diffstat (limited to 'vendor/github.com/matterbridge/gozulipbot')
-rw-r--r-- | vendor/github.com/matterbridge/gozulipbot/.gitignore | 2 | ||||
-rw-r--r-- | vendor/github.com/matterbridge/gozulipbot/README.md | 20 |
2 files changed, 22 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/gozulipbot/.gitignore b/vendor/github.com/matterbridge/gozulipbot/.gitignore new file mode 100644 index 00000000..74775025 --- /dev/null +++ b/vendor/github.com/matterbridge/gozulipbot/.gitignore @@ -0,0 +1,2 @@ +# helper scripts +scripts/ diff --git a/vendor/github.com/matterbridge/gozulipbot/README.md b/vendor/github.com/matterbridge/gozulipbot/README.md new file mode 100644 index 00000000..631095e4 --- /dev/null +++ b/vendor/github.com/matterbridge/gozulipbot/README.md @@ -0,0 +1,20 @@ +## 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: + +```go +import ( + gzb "github.com/ifo/gozulipbot" +) +``` + +Check out the examples directory for more info. |