go-modpacksch is a Go client library for accessing the modpacks.ch API.
import "github.com/jamiemansfield/go-modpacksch/modpacksch"
Construct a new modpacks.ch client, then use the various services on the client to access different parts of the modpacks.ch API. For example:
client := modpacksch.NewClient(nil)
// Get the FTB Revelation pack (id = 35)
pack, err := client.Packs.GetPack(35)
This library is distributed under the MIT license, found in the LICENSE.txt file.