Skip to content
This repository has been archived by the owner on Jan 24, 2020. It is now read-only.

Latest commit

 

History

History
19 lines (16 loc) · 542 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 542 Bytes

MangaRock

GoDoc Go Report Card

A Go client for the MangaRock API. Use mri to decode images.

func main() {
  c := mangarock.New()
  m, err := c.Manga("mrs-serie-100177863")
  if err != nil {
    log.Fatal(err)
  }
  fmt.Println(m.Name)
  // Fushigi Neko no Kyuu-chan
}