⛏️ index : haiku.git

/*
 * 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 {


void
register_additional_commands()
{
	CommandManager::Default()->AddCommand(command_checkfs, "checkfs",
		"check file system");
	CommandManager::Default()->AddCommand(command_resizefs, "resizefs",
		"resize file system");
}


}	// namespace FSShell