mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw.git
synced 2025-11-20 20:14:55 +00:00
Proper namespacing, renaming, and refactoring
This commit is contained in:
22
src/uAuthService.cpp
Normal file
22
src/uAuthService.cpp
Normal file
@@ -0,0 +1,22 @@
|
||||
//
|
||||
// Created by stephane bourque on 2021-03-04.
|
||||
//
|
||||
|
||||
#include "uAuthService.h"
|
||||
|
||||
namespace uCentral::Auth {
|
||||
Service *Service::instance_ = nullptr;
|
||||
|
||||
Service::Service() noexcept:
|
||||
SubSystemServer("Authentication", "AUTH-SVR", "authentication") {
|
||||
}
|
||||
|
||||
int Service::start() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
void Service::stop() {
|
||||
|
||||
}
|
||||
|
||||
}; // end of namespace
|
||||
Reference in New Issue
Block a user