blob: aba582a480c523159ef29412b1d5a5e6cbf554fb [file] [log] [blame]
library pub.command.cache;
import '../command.dart';
import 'cache_add.dart';
import 'cache_list.dart';
import 'cache_repair.dart';
class CacheCommand extends PubCommand {
String get description => "Work with the system cache.";
String get usage => "pub cache <subcommand>";
String get docUrl => "http://dartlang.org/tools/pub/cmd/pub-cache.html";
final subcommands = {
"add": new CacheAddCommand(),
"list": new CacheListCommand(),
"repair": new CacheRepairCommand()
};
}