Microservice bus cleanup.

This commit is contained in:
stephb9959
2021-08-21 11:36:52 -07:00
parent 7a3e1ca33a
commit 7211cd945b
63 changed files with 404 additions and 117 deletions

View File

@@ -27,7 +27,7 @@
#include "RESTAPI_InternalServer.h"
#include "AuthService.h"
namespace uCentral {
namespace OpenWifi {
class Daemon *Daemon::instance_ = nullptr;
class Daemon *Daemon::instance() {
@@ -55,7 +55,7 @@ namespace uCentral {
int main(int argc, char **argv) {
try {
auto App = uCentral::Daemon::instance();
auto App = OpenWifi::Daemon::instance();
auto ExitCode = App->run(argc, argv);
delete App;