anno-cli 0.6.0

CLI for anno: extract entities, coreference chains, relations, and PII from text, HTML, and URLs
1
2
3
4
5
6
7
8
9
10
//! Exit codes for CLI commands - semantic codes for pipeline orchestration
//!
//! Pipeline orchestrators (make, snakemake, airflow) depend on exit codes.
//! These are semantic, not just 0/1.

/// General/unknown error
pub const ERROR_GENERAL: u8 = 1;

/// Invalid command-line arguments
pub const ERROR_ARGS: u8 = 2;