actionqueue-cli 0.1.2

Command-line interface for the ActionQueue task queue engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![forbid(unsafe_code)]
//! CLI library for the ActionQueue system.
//!
//! This crate provides the CLI infrastructure for operating ActionQueue:
//! - Argument parsing and command dispatch
//! - Daemon startup commands
//! - Task submission to the ActionQueue daemon
//! - Stats introspection from the daemon

pub mod args;
pub mod cmd;