# include "otus.h" int main() { ots::otus app = ots::otus(); app.route("/", "GET", [](ots::request req){ return ots::render_template("test.html"); }); app.run("localhost", "8080"); return 0; } # include "otus.h" using namespace std; int main() { // initialize ots::otus app = ots::otus(); // routing app.route("/", "GET", [](ots::request req)->string{ cout << req.method << endl; cout << req.path <<