2018-05-31 17:00:31 +08:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @author An Tao
|
|
|
|
* @section LICENSE
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* @section DESCRIPTION
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-05-28 17:08:12 +08:00
|
|
|
#include "version.h"
|
|
|
|
#include <drogon/version.h>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
using namespace drogon_ctl;
|
|
|
|
static const char banner[]=" _ \n"
|
|
|
|
" __| |_ __ ___ __ _ ___ _ __ \n"
|
|
|
|
" / _` | '__/ _ \\ / _` |/ _ \\| '_ \\ \n"
|
|
|
|
"| (_| | | | (_) | (_| | (_) | | | |\n"
|
|
|
|
" \\__,_|_| \\___/ \\__, |\\___/|_| |_|\n"
|
|
|
|
" |___/ \n";
|
|
|
|
|
2018-05-29 13:49:26 +08:00
|
|
|
void version::handleCommand(std::vector<std::string> ¶meters)
|
2018-05-28 17:08:12 +08:00
|
|
|
{
|
|
|
|
std::cout<<banner<<std::endl;
|
|
|
|
std::cout<<"drogon ctl tools"<<std::endl;
|
|
|
|
std::cout<<"version:"<<VERSION<<std::endl;
|
|
|
|
std::cout<<"git commit:"<<VERSION_MD5<<std::endl;
|
|
|
|
}
|