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/// Canonical git-hook templates embedded for scaffolding and drift detection.
41pub mod hook_templates;
42/// Hooks visibility and maintenance (`resq hooks doctor/update/status`).
43pub mod hooks;
44/// Low-quality image placeholder generation.
45pub mod lqip;
46/// Pre-commit hook logic.
47pub mod pre_commit;
48/// Secret management.
49pub mod secrets;
50/// Unused code removal.
51pub mod tree_shake;
52/// Version management and changesets.
53pub mod version;