Skip to main content

raps_cli/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2#![allow(clippy::uninlined_format_args)]
3// Copyright 2024-2025 Dmytro Yemelianov
4
5//! RAPS CLI library
6//!
7//! This is the main CLI crate that ties together all service crates.
8//! The CLI is primarily a binary, but this library module exports
9//! components that may be useful for testing or programmatic usage.
10
11pub mod commands;
12pub mod credits;
13pub mod mcp;
14pub mod output;
15pub mod plugins;
16pub mod shell;