1
0
Fork 0
mirror of https://github.com/imjasonh/go-marvel synced 2026-07-14 17:06:06 +00:00

Create README.md

This commit is contained in:
Jason Hall 2014-04-25 23:21:34 -04:00
parent b5c11ceb32
commit bc4665c04f

23
README.md Normal file
View file

@ -0,0 +1,23 @@
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)
}
```