package frameproto import ( "io" ) // WriteFramePostURL will write the HTML element for the Frame-Protocol's (i.e., Farcaster Frame's) "fc:frame:post_url" name-value pair. // // For example, this call: // // var url string = "https://example.com/my/post/path.php" // // frameproto.WriteFramePostURL(writer, url) // // Would write this HTML element: // // func WriteFramePostURL(writer io.Writer, url string) { const property string = MetaPropertyFramePostURL writeMetaPropertyContent(writer, property, url) }