This is an API client library for the SMITE API (by Hi-Rez Studios).
import (
"log"
"github.com/duncanleo/go-smite-api/smite"
)
func main() {
client := smite.Client{
DevID: "1234",
AuthKey: "abc123"
}
createSessionResponse, err := c.CreateSession()
if err != nil {
log.Panic(err)
}
log.Printf("Session created: %s", createSessionResponse.SessionID)
}