Remove leon wiki graph command

This commit is contained in:
Joscha 2024-08-25 20:32:06 +02:00
parent c612bd35ad
commit 0eb745e928
5 changed files with 0 additions and 129 deletions

View file

@ -25,8 +25,6 @@ enum Command {
LongestShortestPath { from: String },
/// Print all page titles.
ListPages,
/// Construct wikipedia article graph for Leon.
LeonWikiGraph { articles: PathBuf, language: String },
}
#[derive(Debug, Parser)]
@ -52,8 +50,5 @@ fn main() -> io::Result<()> {
commands::longest_shortest_path::run(&args.datafile, &from)
}
Command::ListPages => commands::list_pages::run(&args.datafile),
Command::LeonWikiGraph { articles, language } => {
commands::leon_wiki_graph::run(&args.datafile, &articles, &language)
}
}
}