package frameproto import ( "io" ) // WriteFrameInputText will write the HTML element for the Frame-Protocol's (i.e., Farcaster Frame's) "fc:frame:input:text" name-value pair. // // For example, this call: // // var label string = "enter your username" // // frameproto.WriteFrameInputText(writer, label) // // Would write this HTML element: // // func WriteFrameInputText(writer io.Writer, label string) { const property string = MetaPropertyFrameInputText writeMetaPropertyContent(writer, property, label) }