File tree 7 files changed +7
-0
lines changed
collectorist/collectorist/src
vexination/vexination/src
7 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ mod delete;
4
4
mod reindex;
5
5
mod upload;
6
6
7
+ /// Run admin services (`trust admin --help` for details)
7
8
#[ derive( clap:: Subcommand , Debug ) ]
8
9
pub enum Command {
9
10
#[ command( subcommand) ]
Original file line number Diff line number Diff line change 1
1
use std:: process:: ExitCode ;
2
2
3
+ /// Run bombastic services (`trust bombastic --help` for details)
3
4
#[ derive( clap:: Subcommand , Debug ) ]
4
5
pub enum Command {
5
6
Api ( bombastic_api:: Run ) ,
Original file line number Diff line number Diff line change 1
1
use std:: process:: ExitCode ;
2
2
3
+ /// Run collector services (`trust collector --help` for details)
3
4
#[ derive( clap:: Subcommand , Debug ) ]
4
5
pub enum Command {
5
6
Osv ( collector_osv:: Run ) ,
Original file line number Diff line number Diff line change 1
1
use std:: process:: ExitCode ;
2
2
3
+ /// Run collectorist services (`trust collectorist --help` for details)
3
4
#[ derive( clap:: Subcommand , Debug ) ]
4
5
pub enum Command {
5
6
Api ( collectorist_api:: Run ) ,
Original file line number Diff line number Diff line change 1
1
use std:: process:: ExitCode ;
2
2
3
+ /// Run exhort services (`trust exhort --help` for details)
3
4
#[ derive( clap:: Subcommand , Debug ) ]
4
5
pub enum Command {
5
6
Api ( exhort_api:: Run ) ,
Original file line number Diff line number Diff line change 1
1
use std:: process:: ExitCode ;
2
2
3
+ /// Run v11y services (`trust v11y --help` for details)
3
4
#[ derive( clap:: Subcommand , Debug ) ]
4
5
pub enum Command {
5
6
Api ( v11y_api:: Run ) ,
Original file line number Diff line number Diff line change 1
1
use std:: process:: ExitCode ;
2
2
3
+ /// Run vexination services (`trust vexination --help` for details)
3
4
#[ derive( clap:: Subcommand , Debug ) ]
4
5
pub enum Command {
5
6
Api ( vexination_api:: Run ) ,
You can’t perform that action at this time.
0 commit comments