2019-03-29 07:34:14 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* DoNothingPlugin.cc
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "DoNothingPlugin.h"
|
|
|
|
|
|
|
|
using namespace drogon;
|
|
|
|
|
|
|
|
void DoNothingPlugin::initAndStart(const Json::Value &config)
|
|
|
|
{
|
|
|
|
/// Initialize and start the plugin
|
|
|
|
}
|
|
|
|
|
2019-05-18 12:39:57 +00:00
|
|
|
void DoNothingPlugin::shutdown()
|
2019-03-29 07:34:14 +00:00
|
|
|
{
|
|
|
|
/// Shutdown the plugin
|
|
|
|
}
|