Redash(for Go) is a unofficial simple api client lib.
See Godoc at http://godoc.org/github.com/ynishi/redash
Redash is OSS BI tool. See more at https://redash.io/
- Version 1.0(v1)
$ export REDASH_APIKEY="abc..."
$ export REDASH_URL="http://localhost"
package main
redash "github.com/ynishi/redash/v1"
response, _ := redash.Get("/api/queries", nil)
buf := ioutil.ReadAll(response.Body)
fmt.Printf("%v", string(buf))
$ go get "github.com/ynishi/redash"
Welcome to participate develop, send pull request, add issue(question, bugs, wants and so on).
- first, clone repository.
$ git clone https://github.com/ynishi/redash.git
$ cd redash
$ go test
- and make rull request.
Copyright (c) 2017, Yutaka Nishimura. Licenced under MIT, see LICENSE.