ServerCore/Command.cpp
2021-08-31 17:57:21 -07:00

16 lines
335 B
C++

#include "Command.h"
#include "Log.h"
#include "CommandList.h"
namespace core {
int Command::processCommand(coreutils::ZString &request, TCPSession &session) {
return 0;
}
void Command::output(std::stringstream &out) {
out << "Write your own command description here for the help system." << std::endl;
}
}