Recreated webstie in Dotnet

This commit is contained in:
2026-02-08 00:54:13 +01:00
parent 50adbccaba
commit 1fc420cd1c
229 changed files with 84676 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#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