drogon/examples/simple_example/DoNothingPlugin.cc
2019-05-18 20:39:57 +08:00

20 lines
265 B
C++

/**
*
* 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
}