/** Copyright 2012, Axel DΓΆrfler, axeld@pinc-software.de.* Distributed under the terms of the MIT License.*/#include "fssh.h"#include "command_checkfs.h"#include "command_resizefs.h"namespace FSShell {voidregister_additional_commands(){CommandManager::Default()->AddCommand(command_checkfs, "checkfs","check file system");CommandManager::Default()->AddCommand(command_resizefs, "resizefs","resize file system");}} // namespace FSShell