biodream 0.2.7

Zero-copy, streaming-capable toolkit for reading and writing BIOPAC AcqKnowledge (.acq) files
Documentation
1
2
3
4
5
6
7
8
9
10
//! CLI entry point for the `biopac` binary.
//!
//! Requires the `read` feature (which in turn requires `std`).
//! Run `biopac --help` to see available subcommands.

mod cli;

fn main() -> anyhow::Result<()> {
    cli::run()
}