#pragma once #include #include #include #include #include #include "http_server.h" // TEST #include namespace flask { class Flask { public: Flask() { } void handle() { } void route(const std::string& url, std::function f) { } Flask& port(std::uint16_t port) { port_ = port; return *this; } void run() { Server server(this, port_); server.run(); } private: uint16_t port_ = 80; }; };