Skip to main content

resq_cli/commands/
mod.rs

1/*
2 * Copyright 2026 ResQ
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *     http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17//! CLI commands for the ResQ tool.
18//!
19//! # Commands
20//!
21//! - [`audit`] - Audit blockchain events
22//! - [`copyright`] - Check/update copyright headers
23//! - [`cost`] - Estimate cloud costs
24//! - [`lqip`] - Low-quality image placeholder generation
25//! - [`secrets`] - Secret management
26//! - [`tree_shake`] - Remove unused code
27
28/// Blockchain event auditing.
29pub mod audit;
30/// Copyright header management.
31pub mod copyright;
32/// Cloud cost estimation.
33pub mod cost;
34/// Development server management.
35pub mod dev;
36/// Documentation management and publication.
37pub mod docs;
38/// Service exploration and operations.
39pub mod explore;
40/// Low-quality image placeholder generation.
41pub mod lqip;
42/// Pre-commit hook logic.
43pub mod pre_commit;
44/// Secret management.
45pub mod secrets;
46/// Unused code removal.
47pub mod tree_shake;
48/// Version management and changesets.
49pub mod version;