blob: 631095e47717d826b85d3c7b3726151ae9414df6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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.
|