Ken Van Hoeylandt 85e26636a3
C++ conversion (#80)
Converted project to C++
2024-11-22 20:26:08 +01:00

28 lines
425 B
C++

#ifndef ESP_TARGET
#include "WifiSettings.h"
#include "Log.h"
namespace tt::service::wifi::settings {
#define TAG "wifi_settings_mock"
bool contains(const char* ssid) {
return false;
}
bool load(const char* ssid, WifiApSettings* settings) {
return false;
}
bool save(const WifiApSettings* settings) {
return false;
}
bool remove(const char* ssid) {
return false;
}
} // namespace
#endif // ESP_TARGET