mirror of
https://github.com/vk496/MeshCore.git
synced 2026-09-09 22:35:55 +00:00
13 lines
164 B
C++
13 lines
164 B
C++
#include "OtaContext.h"
|
|
|
|
namespace mesh {
|
|
namespace ota {
|
|
|
|
OtaContext& ota_ctx() {
|
|
static OtaContext ctx;
|
|
return ctx;
|
|
}
|
|
|
|
} // namespace ota
|
|
} // namespace mesh
|