This commit is contained in:
Ben Allfree
2025-12-05 19:44:46 -08:00
parent 5aedfc17e5
commit fe1d85e84c
2 changed files with 7 additions and 3 deletions

View File

@@ -1,11 +1,10 @@
#pragma once
#pragma MPM_MODULE(LoBBSModule)
#include "meta.h"
#include "LoBBSDal.h"
#include "SinglePortModule.h"
#include "lobbs.pb.h"
#define LOBBS_VERSION "1.0.0"
#define LOBBS_HEADER "LoBBS v" LOBBS_VERSION "\nCommands:\n"
/**
@@ -37,4 +36,4 @@ class LoBBSModule : public SinglePortModule
LoBBSDal *dal;
void sendReply(NodeNum to, const std::string &msg);
};
};

5
src/meta.h Normal file
View File

@@ -0,0 +1,5 @@
#pragma once
#pragma MPM_MODULE(LoBBSModule)
#define LOBBS_VERSION "1.1.0"