#ifndef DOUWCO_SERVER_HPP #define DOUWCO_SERVER_HPP #include namespace Douwco { class Server { public: Server() = default; ~Server() = default; void setup(); void start(); private: static constexpr int port = 8080; crow::SimpleApp crowApp; }; } #endif // DOUWCO_SERVER_HPP