Piotr Czajkowski 00c7d19f65 Small correction | 3 yıl önce | |
---|---|---|
.github | 4 yıl önce | |
LICENSE.md | 4 yıl önce | |
README.md | 4 yıl önce | |
bullet.go | 3 yıl önce | |
error.go | 4 yıl önce | |
fileUpload.go | 4 yıl önce | |
push.go | 4 yıl önce | |
pushInterface.go | 4 yıl önce |
Initialize client
b := bullet.NewBullet("YOUR_TOKEN")
Send note
err := b.SendNote("testTitle", "testText")
if err != nil {
log.Fatal(err)
}
Send link
err := b.SendLink("testTitle", "testText", "https://abc.com")
if err != nil {
log.Fatal(err)
}
Send file
err := b.SendFile("testFile", "Something", "./test.txt")
if err != nil {
log.Fatal(err)
}