1
0
Fork 0
mirror of https://github.com/imjasonh/go-marvel synced 2026-07-10 20:31:56 +00:00
go-marvel/README.md
2014-04-25 23:23:57 -04:00

383 B

go-marvel

Go client library for the Marvel REST API

Usage:

import (
  "fmt"
  
  "github.com/ImJasonH/go-marvel"
)

func main() {
  c := marvel.NewClient("my-public-key", "my-private-key")
  r, err := c.Series(2258, marvel.CommonRequest{})
  if err != nil {
    panic(err)
  }
  fmt.Println("%+v\n", r)
}