1
0
Fork 0
mirror of https://github.com/imjasonh/go-marvel synced 2026-07-09 11:36:40 +00:00
No description
Find a file
2014-04-25 23:21:34 -04:00
marvel.go move to marvel package, make test class a test 2014-04-25 23:13:47 -04:00
marvel_test.go move to marvel package, make test class a test 2014-04-25 23:13:47 -04:00
README.md Create README.md 2014-04-25 23:21:34 -04:00

go-marvel

Go client library for Marvel 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)
}