brokkr-broker::cli Rust
Structs
brokkr-broker::cli::Cli
pub
Derives: Parser
Brokkr Broker CLI
This CLI provides commands to manage the Brokkr Broker, including serving the broker, creating agents and generators, and rotating keys.
Fields
| Name | Type | Description |
|---|---|---|
command | Commands |
brokkr-broker::cli::CreateCommands
pub
Derives: Args
Fields
| Name | Type | Description |
|---|---|---|
command | CreateSubcommands |
brokkr-broker::cli::RotateCommands
pub
Derives: Args
Fields
| Name | Type | Description |
|---|---|---|
command | RotateSubcommands |
Enums
brokkr-broker::cli::Commands pub
Variants
Serve- Start the Brokkr Broker serverCreate- Create new entitiesRotate- Rotate keys
brokkr-broker::cli::CreateSubcommands pub
Variants
Agent- Create a new agentGenerator- Create a new generator
brokkr-broker::cli::RotateSubcommands pub
Variants
Agent- Rotate an agent keyGenerator- Rotate a generator keyAdmin- Rotate the admin key
Functions
brokkr-broker::cli::parse_cli
pub
#![allow(unused)]
fn main() {
fn parse_cli () -> Cli
}
Source
#![allow(unused)]
fn main() {
pub fn parse_cli() -> Cli {
Cli::parse()
}
}