drogon/examples/simple_example/DoNothingPlugin.cc

20 lines
266 B
C++
Raw Normal View History

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
}
void DoNothingPlugin::shutdown()
{
/// Shutdown the plugin
}