sakurs_cli/
lib.rs

1//! Sakurs CLI library
2//!
3//! This library provides the command-line interface for the Sakurs
4//! sentence boundary detection system.
5
6pub mod commands;
7pub mod error;
8pub mod input;
9pub mod language_source;
10pub mod output;
11pub mod progress;
12
13pub use error::{CliError, CliResult};