Client for Pushbullet API

Piotr Czajkowski 7cde8264c0 Let's add some action 4 yıl önce
.github 7cde8264c0 Let's add some action 4 yıl önce
LICENSE.md b4317f5d84 Starting 4 yıl önce
README.md 297d5d94b6 Added usage examples 4 yıl önce
bullet.go 977cfe7aba Able to send file 4 yıl önce
error.go 195375e3e4 No need for export 4 yıl önce
fileUpload.go 977cfe7aba Able to send file 4 yıl önce
push.go 7340142823 Let's export as little as possible 4 yıl önce
pushInterface.go 977cfe7aba Able to send file 4 yıl önce

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