Initial commit

This commit is contained in:
stephb9959
2022-03-11 22:56:06 -08:00
parent 157f3ab206
commit 3cb57d85e9
19 changed files with 2197 additions and 13 deletions

View File

@@ -0,0 +1,14 @@
//
// Created by stephane bourque on 2022-03-11.
//
#include "RESTAPI_board_list_handler.h"
#include "StorageService.h"
#include "RESTAPI/RESTAPI_analytics_db_helpers.h"
namespace OpenWifi {
void RESTAPI_board_list_handler::DoGet() {
return ListHandler<BoardsDB>("boards", DB_, *this);
}
}