Unofficial Raindrop.io Go SDK.
Follow the offiical raindrop.io authentication documentation to create an access token, which will be used by the SDK.
go get github.com/jiachengxu/raindrop-sdk-go@v0.1.0
package main
import (
"fmt"
"github.com/jiachengxu/raindrop-sdk-go"
)
func main() {
client := raindrop.NewClient("your_test_token_here")
// Example: Get collections
collections, err := client.GetRootCollections()
if err != nil {
fmt.Println("Error fetching collections:", err)
return
}
fmt.Println(collections)
}