#include "AddCommand.h" namespace commands { AddCommand::AddCommand() : SubCommand("add", 100) {} void AddCommand::run(int argc, stringstream& args) { cout << "Add!\n"; } }