src reorg

This commit is contained in:
Ben Allfree
2025-11-27 10:04:46 -08:00
parent 3edd03f6b7
commit 699a8656a8
6 changed files with 4 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
#pragma once
#include "lobbs.pb.h"
#include "../lodb/LoDB.h"
#include "../../lodb/src/LoDB.h"
#include <stdint.h>
#include <vector>

View File

@@ -9,6 +9,7 @@
#include <cctype>
#include <cstring>
#include <string>
#include "ModuleRegistry.h"
// Static helper: case-insensitive substring search
static const char *stristr(const char *haystack, const char *needle)
@@ -689,3 +690,5 @@ void LoBBSModule::sendReply(NodeNum to, const std::string &msg)
reply->decoded.want_response = false;
service->sendToMesh(reply);
}
MESHTASTIC_REGISTER_MODULE(LoBBSModule);