2018-05-29 05:49:26 +00:00
|
|
|
//
|
|
|
|
// Copyright 2018, An Tao. All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a MIT license
|
|
|
|
// that can be found in the License file.
|
|
|
|
|
2018-05-28 10:29:14 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <drogon/DrObject.h>
|
|
|
|
#include "CommandHandler.h"
|
|
|
|
using namespace drogon;
|
|
|
|
namespace drogon_ctl
|
|
|
|
{
|
|
|
|
class help:public DrObject<help>,public CommandHandler
|
|
|
|
{
|
|
|
|
public:
|
2018-05-29 05:49:26 +00:00
|
|
|
virtual void handleCommand(std::vector<std::string> ¶meters) override;
|
2018-05-28 10:29:14 +00:00
|
|
|
std::string script(){return "display this message";}
|
|
|
|
};
|
|
|
|
}
|