Client for Pushbullet API

Piotr Czajkowski 68fb4e837e SendNote can now send to specific device only пре 3 година
.github 5885fdfd2a Added tests пре 3 година
LICENSE.md b4317f5d84 Starting пре 3 година
README.md 297d5d94b6 Added usage examples пре 3 година
bullet.go 68fb4e837e SendNote can now send to specific device only пре 3 година
bullet_test.go 68fb4e837e SendNote can now send to specific device only пре 3 година
devices.go a2cec82518 Added ListDevices пре 3 година
error.go 195375e3e4 No need for export пре 3 година
fileUpload.go 396a5812ee Maybe a bit better пре 3 година
push.go 68fb4e837e SendNote can now send to specific device only пре 3 година
pushInterface.go 396a5812ee Maybe a bit better пре 3 година

README.md

bullet

Go Report Card

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)
}