Mastodon Feed: Post

Mastodon Feed

jsonstein@masto.deoan.org ("Jeff Sonstein") wrote:

simple things should be simple to do, like this in D:

——- snip ——-

void createNote( HTTPServerRequest req,HTTPServerResponse res ) {
string topic = req.form.get( "form_topic" );
string content = req.form.get( "form_content" );
render!( "created.dt", topic, content )( res );
}