#include "ServerCommands.h"

ServerCommands::ServerCommands() : running(true) {
}

bool ServerCommands::isRunning() const {
    return running;
}

void ServerCommands::stop() {
    running = false;
}