This commit is contained in:
2025-08-04 17:42:12 +06:00
parent 31ee024d2f
commit c1df4a21f3
4 changed files with 309 additions and 155 deletions

View File

@@ -53,7 +53,7 @@ struct ServerObj {
Net::SocketServer LS;
ServerObj(asio::io_context &ioc)
: GS(ioc, ""), LS(ioc, [&](tcp::socket sock) -> coro<> { co_await GS.pushSocketConnect(std::move(sock)); }, 7890)
: GS(ioc, "worlds/test/"), LS(ioc, [&](tcp::socket sock) -> coro<> { co_await GS.pushSocketConnect(std::move(sock)); }, 7890)
{
}
};