This is a Go wrapper to use the The Rick and Morty API
To get started check the documentation on rickandmortyapi.com
go get -u github.com/pitakill/rickandmortyapigowrapper
// Import and rename the package for a easy handle
import rnm "github.com/pitakill/rickandmortyapigowrapper"
// To get the character with id 1
character, err := rnm.GetCharacter(1)
The complete usage is in the example directory