Rename, clean up

This commit is contained in:
Dominik Werder
2025-05-16 13:17:06 +02:00
parent 87a11bf497
commit 2fa377ef73
6 changed files with 14 additions and 24 deletions

View File

@@ -1,4 +1,5 @@
use clap::{ArgAction, Parser};
use clap::ArgAction;
use clap::Parser;
use daqbuf_err as err;
use err::Error;
use netpod::timeunits::*;
@@ -66,15 +67,3 @@ impl FromStr for TimeBinSize {
}
}
}
pub fn main() -> Result<(), Error> {
taskrun::run(async {
let opts = Opts::parse();
match opts.subcmd {
SubCmd::ConvertArchiverApplianceChannel(_) => {
eprintln!("error: archapp not built");
Ok(())
}
}
})
}

View File

@@ -4,12 +4,12 @@ use daqbuf_err as err;
use disk::eventchunker::EventChunker;
use disk::eventchunker::EventChunkerConf;
use err::Error;
#[allow(unused)]
use netpod::log::*;
use netpod::range::evrange::NanoRange;
use netpod::ByteOrder;
use netpod::ByteSize;
use netpod::SfChFetchInfo;
#[allow(unused)]
use netpod::log::*;
use netpod::range::evrange::NanoRange;
use std::path::PathBuf;
use tokio::fs::File;
use tokio::io::AsyncReadExt;

View File

@@ -1 +1,2 @@
pub mod convert;
pub mod dq;