Cleanup RPC component

This commit is contained in:
2025-05-26 14:44:08 -04:00
parent eadd76f570
commit bc6b2a4500
15 changed files with 81 additions and 32 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