Import data and check consistency
This commit is contained in:
parent
1ea09a9be9
commit
f6bcb39c52
2 changed files with 22 additions and 0 deletions
|
|
@ -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(),
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue