Created
March 27, 2018 14:06
-
-
Save depado/226449bbbdef6c9ef6d222250f712ba6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func cardFromDrink(d *cocktail.FullDrink) df.BasicCard { | |
card := df.BasicCard{ | |
Title: d.StrDrink, | |
FormattedText: d.StrInstructions, | |
Image: &df.Image{ | |
ImageURI: d.StrDrinkThumb, | |
}, | |
} | |
return card | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment