Go to file
Felipe M 7173271130
Logging improvements
2021-02-06 18:31:15 +01:00
test_outputs Added test JSON files 2021-02-05 11:12:58 +01:00
.gitignore Initial commit 2021-02-04 13:12:31 +01:00
README.md Initial work 2021-02-04 22:59:22 +01:00
go.mod Logging improvements 2021-02-06 18:31:15 +01:00
go.sum Logging improvements 2021-02-06 18:31:15 +01:00
main.go Logging improvements 2021-02-06 18:31:15 +01:00
types.go Made importable package 2021-02-06 11:53:58 +01:00

README.md

go-mangadex

Mangadex API client in Golang.

Installation

...

Usage

import (
    mangadex "code.fmartingr.dev/fmartingr/go-mangadex"
)

func main() {
    manga, err := mangadex.GetManga(123)
    if err != nil {
        log.Println("[error] Retrieving manga: %s", err)
    }
    // manga.GetChapter(1)
    // manga.GetCovers()
    // manga.GetVolume()
}