Golang client for interacting with wavy.fm.
go get github.com/OGKevin/go-wavy/wavy
import "github.com/OGKevin/go-wavy/wavy"
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
c := wavy.NewClient(ctx, hclog.NewNullLogger(), os.Getenv("CLIENT_ID"), os.Getenv("CLIENT_SECRET")
profile, err := c.UserService().GetProfile(ctx, wavy.UserURI{Username: "OGKevin"})
if err != nil {
panic(err)
}