void static_index(Request &req, Response &res) {
P(index) =
"\n"
"
\n"
"Some thing isnt supposed to be here\n"
"\n"
"\n"
"Wuzzup?
\n"
"\n"
"";
res.set("Content-Type", "text/html");
res.printP(index);
}
Router staticFileRouter;
Router * staticFiles() {
staticFileRouter.get("/", &static_index);
return &staticFileRouter;
}