Skip to content

Commit 51d03a8

Browse files
helio-frotadejanb
authored andcommittedAug 22, 2024
fix: adds description for remaining commands
1 parent 1fd18a2 commit 51d03a8

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed
 

‎admin/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ mod delete;
44
mod reindex;
55
mod upload;
66

7+
/// Run admin services (`trust admin --help` for details)
78
#[derive(clap::Subcommand, Debug)]
89
pub enum Command {
910
#[command(subcommand)]

‎bombastic/bombastic/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
use std::process::ExitCode;
22

3+
/// Run bombastic services (`trust bombastic --help` for details)
34
#[derive(clap::Subcommand, Debug)]
45
pub enum Command {
56
Api(bombastic_api::Run),

‎collector/collector/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
use std::process::ExitCode;
22

3+
/// Run collector services (`trust collector --help` for details)
34
#[derive(clap::Subcommand, Debug)]
45
pub enum Command {
56
Osv(collector_osv::Run),

‎collectorist/collectorist/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
use std::process::ExitCode;
22

3+
/// Run collectorist services (`trust collectorist --help` for details)
34
#[derive(clap::Subcommand, Debug)]
45
pub enum Command {
56
Api(collectorist_api::Run),

‎exhort/exhort/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
use std::process::ExitCode;
22

3+
/// Run exhort services (`trust exhort --help` for details)
34
#[derive(clap::Subcommand, Debug)]
45
pub enum Command {
56
Api(exhort_api::Run),

‎v11y/v11y/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
use std::process::ExitCode;
22

3+
/// Run v11y services (`trust v11y --help` for details)
34
#[derive(clap::Subcommand, Debug)]
45
pub enum Command {
56
Api(v11y_api::Run),

‎vexination/vexination/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
use std::process::ExitCode;
22

3+
/// Run vexination services (`trust vexination --help` for details)
34
#[derive(clap::Subcommand, Debug)]
45
pub enum Command {
56
Api(vexination_api::Run),

0 commit comments

Comments
 (0)
Please sign in to comment.