package frameproto
// AppendFrameImage will append the HTML element for the Frame-Protocol's (i.e., Farcaster Frame's) "fc:frame:image" name-value pair.
//
// For example, this call:
//
// var p []byte
//
// // ...
//
// var url string = "https://example.com/images/screen.png"
//
// p = frameproto.AppendFrameImage(p, url)
//
// Would append this HTML element:
//
//
func AppendFrameImage(p []byte, url string) []byte {
const property string = MetaPropertyFrameImage
return appendMetaPropertyContent(p, property, url)
}