mirror of
https://gitee.com/an-tao/drogon.git
synced 2024-12-02 19:57:43 +08:00
20 lines
265 B
C++
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
|
|
}
|