mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-15 04:10:01 +03:00
7 lines
100 B
C++
7 lines
100 B
C++
#pragma once
|
|
|
|
enum class AsyncMqttClientError : uint8_t {
|
|
MAX_RETRIES = 0,
|
|
OUT_OF_MEMORY = 1
|
|
};
|