1
0
Fork 0
mirror of https://github.com/imjasonh/go-marvel synced 2026-07-09 03:35:02 +00:00
No description
Find a file
2014-04-26 19:10:20 -04:00
.gitignore add test.sh, gitignore it 2014-04-26 00:40:10 -04:00
marvel.go pointered, omitempty'd everywhere 2014-04-26 19:10:20 -04:00
marvel_test.go Comic struct 2014-04-26 17:51:51 -04:00
README.md Update README.md 2014-04-25 23:23:57 -04:00

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)
}