pixwhile/routes/home.cpp

6 lines
135 B
C++
Raw Normal View History

2023-04-03 08:57:51 +00:00
#include "home.h"
void home_route(const httplib::Request& req, httplib::Response& res) {
res.set_content("awoo", "text/plain");
}