raps-cli 4.15.0

RAPS (rapeseed) - Rust Autodesk Platform Services CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: Apache-2.0
#![allow(clippy::uninlined_format_args)]
// Copyright 2024-2025 Dmytro Yemelianov

//! RAPS CLI library
//!
//! This is the main CLI crate that ties together all service crates.
//! The CLI is primarily a binary, but this library module exports
//! components that may be useful for testing or programmatic usage.

pub mod commands;
pub mod credits;
pub mod mcp;
pub mod output;
pub mod plugins;
pub mod shell;