/rocket-go

go wrapper for rocket league stats API

Primary LanguageGoMIT LicenseMIT

Warning

https://rocketleaguestats.com/ has been closed so this repository will be archived.

Rocket League Stats

Build Status Coverage Status Go Report Card License

RLS Logo

Setup

go get github.com/Girbons/rocket

Usage

Get API_KEY here

Example

package main

import (
    "fmt"

    "github.com/Girbons/rocket"
)

func main() {
    client := rocket.NewRocketClient("API_KEY")
    response := client.Player("76561198079681869", 1)
    fmt.Println(response.Content())
}

Contribuiting

Feel free to submit Pull Request