Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 545 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 545 Bytes

Magic: The Gathering SDK

This is the Magic: The Gathering SDK Go implementation. It is a wrapper around the MTG API of magicthegathering.io.

Installation

Just run

go get github.com/Enviy/mtg-sdk-go OR just let go mod handle dependencies for you by calling go mod init <yourProject> go mod tidy

Want to see what sets are in standard?

sets, err := mtg.StandardSets()
if err != nil {
    return err
}
fmt.Println(sets)

Docs

See GoDoc