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

@@ -0,0 +1,15 @@
//
// Created by Johnathon Slightham on 2025-05-26.
//
#ifndef IWIFIMANAGER_H
#define IWIFIMANAGER_H
class IWifiManager {
public:
virtual ~IWifiManager() {};
virtual int connect() = 0;
virtual int disconnect() = 0;
};
#endif //IWIFIMANAGER_H