Load sift data from stdin

This commit is contained in:
Joscha 2022-09-30 18:06:42 +02:00
parent 2e2045a74d
commit c195fbb8d4
4 changed files with 299 additions and 2 deletions

View file

@ -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(),
}
}