Load sift data from stdin
This commit is contained in:
parent
2e2045a74d
commit
c195fbb8d4
4 changed files with 299 additions and 2 deletions
|
|
@ -1,3 +1,17 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
mod ingest;
|
||||
|
||||
use std::io;
|
||||
|
||||
use clap::Parser;
|
||||
|
||||
#[derive(Debug, Parser)]
|
||||
enum Command {
|
||||
/// Read sift data on stdin and output brood data on stdout.
|
||||
Ingest,
|
||||
}
|
||||
|
||||
fn main() -> io::Result<()> {
|
||||
match Command::parse() {
|
||||
Command::Ingest => ingest::ingest(),
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue