Cleanup rpc

This commit is contained in:
2025-05-26 14:58:23 -04:00
parent 5d7c67eeed
commit 82020985e1
11 changed files with 45 additions and 8 deletions

View File

@@ -5,4 +5,10 @@
#ifndef RPCFACTORY_H
#define RPCFACTORY_H
class RPCFactory {
public:
static std::shared_ptr<IRPCServer> createRPCServer() {
return std::make_shared<TCPServer>();
}
#endif //RPCFACTORY_H