actionqueue_cli/lib.rs
1#![forbid(unsafe_code)]
2//! CLI library for the ActionQueue system.
3//!
4//! This crate provides the CLI infrastructure for operating ActionQueue:
5//! - Argument parsing and command dispatch
6//! - Daemon startup commands
7//! - Task submission to the ActionQueue daemon
8//! - Stats introspection from the daemon
9
10pub mod args;
11pub mod cmd;