Files
douwco_website/include/server.hpp
2025-08-06 02:21:02 +02:00

25 lines
358 B
C++

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