Import data and check consistency

This commit is contained in:
Joscha 2022-09-30 19:53:41 +02:00
parent 1ea09a9be9
commit f6bcb39c52
2 changed files with 22 additions and 0 deletions

View file

@ -1,5 +1,6 @@
mod ingest;
mod data;
mod test;
use std::io;
@ -9,10 +10,13 @@ use clap::Parser;
enum Command {
/// Read sift data on stdin and output brood data on stdout.
Ingest,
/// Test various things
Test,
}
fn main() -> io::Result<()> {
match Command::parse() {
Command::Ingest => ingest::ingest(),
Command::Test => test::test(),
}
}