This package provides a simple rest client for the chefkoch.de
API.
go get -u github.com/wehmoen-dev/go-ck
package main
import (
"fmt"
"github.com/wehmoen-dev/go-ck/pkg/client"
)
const MyFavouriteRecipeId = "2529831396465550"
func main() {
ck := client.NewClient()
recipe, err := ck.GetRecipe(MyFavouriteRecipeId)
if err != nil {
fmt.Println(err)
}
fmt.Println(recipe.Title)
}