Initial commit

This commit is contained in:
2025-04-29 17:45:27 +03:00
commit cc1bb79633
10 changed files with 441 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#include "server.hpp"
int main(int argc, char **argv) {
Server server;
server.start();
return 0;
}