Initial commit

This commit is contained in:
stephb9959
2022-01-10 10:31:20 -08:00
parent d4cf9a401b
commit 9f0059d4e4
43 changed files with 12086 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
//
// Created by stephane bourque on 2021-10-23.
//
#include "framework/MicroService.h"
namespace OpenWifi {
Poco::Net::HTTPRequestHandler * RESTAPI_ExtRouter(const char *Path, RESTAPIHandler::BindingMap &Bindings,
Poco::Logger & L, RESTAPI_GenericServer & S, uint64_t TransactionId) {
return RESTAPI_Router<
RESTAPI_system_command
>(Path,Bindings,L, S, TransactionId);
}
Poco::Net::HTTPRequestHandler * RESTAPI_IntRouter(const char *Path, RESTAPIHandler::BindingMap &Bindings,
Poco::Logger & L, RESTAPI_GenericServer & S, uint64_t TransactionId) {
return RESTAPI_Router_I<
RESTAPI_system_command
>(Path, Bindings, L, S, TransactionId);
}
}