mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw.git
synced 2025-12-26 07:17:13 +00:00
23 lines
531 B
C++
23 lines
531 B
C++
//
|
|
// Created by stephane bourque on 2022-11-21.
|
|
//
|
|
|
|
#include "ScriptManager.h"
|
|
#include "framework/MicroServiceFuncs.h"
|
|
#include <fstream>
|
|
#include "Poco/JSON/Parser.h"
|
|
|
|
namespace OpenWifi {
|
|
|
|
int ScriptManager::Start() {
|
|
poco_notice(Logger(),"Starting...");
|
|
ScriptDir_ = MicroServiceConfigPath("script.manager.directory", MicroServiceDataDirectory() + "/included_scripts" );
|
|
return 0;
|
|
}
|
|
|
|
void ScriptManager::Stop() {
|
|
poco_notice(Logger(),"Stopping...");
|
|
poco_notice(Logger(),"Stopped...");
|
|
}
|
|
|
|
} // namespace OpenWifi
|