stephb9959
2022-11-03 10:29:02 -07:00
parent fa85884d97
commit 5780e2585f
2 changed files with 6 additions and 2 deletions

View File

@@ -20,6 +20,7 @@
#include "DeviceStatusReceiver.h"
#include "HealthReceiver.h"
#include "WifiClientCache.h"
#include "framework/UI_WebSocketClientServer.h"
namespace OpenWifi {
class Daemon *Daemon::instance_ = nullptr;
@@ -37,7 +38,8 @@ namespace OpenWifi {
DeviceStatusReceiver(),
HealthReceiver(),
VenueCoordinator(),
WifiClientCache()
WifiClientCache(),
UI_WebSocketClientServer()
});
}
return instance_;

View File

@@ -8,6 +8,7 @@
#include "RESTAPI/RESTAPI_board_timepoint_handler.h"
#include "RESTAPI/RESTAPI_wificlienthistory_handler.h"
#include "framework/RESTAPI_SystemCommand.h"
#include "framework/RESTAPI_WebSocketServer.h"
namespace OpenWifi {
@@ -20,7 +21,8 @@ namespace OpenWifi {
RESTAPI_board_timepoint_handler,
RESTAPI_board_handler,
RESTAPI_board_list_handler,
RESTAPI_wificlienthistory_handler
RESTAPI_wificlienthistory_handler,
RESTAPI_webSocketServer
>(Path,Bindings,L, S, TransactionId);
}