Skip to main content

xurl/cli/
exit_codes.rs

1//! Re-exports from the library's error module for binary-internal use.
2//!
3//! The canonical definitions live in [`crate::error`] so library consumers
4//! (e.g., bird) can access them directly. This module exists only to keep
5//! binary-internal imports short.
6
7#[allow(unused_imports)]
8pub use crate::error::{
9    EXIT_AUTH_REQUIRED, EXIT_GENERAL_ERROR, EXIT_NETWORK_ERROR, EXIT_NOT_FOUND, EXIT_RATE_LIMITED,
10    EXIT_SUCCESS,
11};