brnstz / ohmy

Go API client for ohmyrockness.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ohmy

Go API client for ohmyrockness.com

godoc

GoDoc

Example

package main

import (
    "fmt"

    "github.com/brnstz/ohmy"
)

func main() {
    shows, err := ohmy.GetShows(ohmy.RegionNYC, 100)

    if err == nil {
        fmt.Println(shows[0].Venue.Name, shows[0].Bands[0].Name)
    }
}

About

Go API client for ohmyrockness.com

License:MIT License


Languages

Language:Go 100.0%