Go interface to the infermedica REST API
This is a Go interface to the Infermedica REST API: https://developer.infermedica.com/docs/api
go get github.com/torniker/infermedica
app := infermedica.NewApp("appid", "appkey", "model")
symptoms, err := app.Symptoms()
if err != nil {
log.Errorf("Could not fetch symptoms: %v", err)
}
log.Infof("All Symptoms: %v", symptoms)