mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw.git
synced 2026-01-27 10:23:13 +00:00
24 lines
544 B
C++
24 lines
544 B
C++
//
|
|
// Created by stephane bourque on 2022-11-21.
|
|
//
|
|
|
|
#include "ScriptManager.h"
|
|
#include "Poco/JSON/Parser.h"
|
|
#include "framework/MicroServiceFuncs.h"
|
|
#include <fstream>
|
|
|
|
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
|