Skip to content

Instantly share code, notes, and snippets.

@rikkimax
Last active January 4, 2016 11:19
import cmsed.base;
class ExampleRoute : OORoute {
@RouteFunction(RouteType.Get, "/mypath/:myarg")
void anyNameMyFunc() {
if (http_request.params.get("myarg", "") != "") {
http_reponse.writeBody(http_request.params["myarg"]);
} else {
http_response.writeBody("You failed haha!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment