sakurs-cli 0.1.1

Command-line interface for Sakurs sentence boundary detection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Sakurs CLI library
//!
//! This library provides the command-line interface for the Sakurs
//! sentence boundary detection system.

pub mod commands;
pub mod error;
pub mod input;
pub mod language_source;
pub mod output;
pub mod progress;

pub use error::{CliError, CliResult};