lots of changes

removed stdafx from server namespace
logger is now header only
added class stubs
added accessor classes and minor code in them
added nlohmann_json to includes
protocol switch back to 560 while we wait for next neolegacy release
This commit is contained in:
DrPerkyLegit
2026-05-17 17:28:22 -04:00
parent afdf1d188c
commit 96ac80730a
19 changed files with 52399 additions and 54 deletions

View File

@@ -0,0 +1,5 @@
#include "ServerAccessor.h"
ServerAccessor::ServerAccessor(std::string name, std::string path) {
this->storage = std::make_shared<GenericStorage>(name, path);
}