Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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

NameTypeDescription
commandCommands

brokkr-broker::cli::CreateCommands

pub

Derives: Args

Fields

NameTypeDescription
commandCreateSubcommands

brokkr-broker::cli::RotateCommands

pub

Derives: Args

Fields

NameTypeDescription
commandRotateSubcommands

Enums

brokkr-broker::cli::Commands pub

Variants

  • Serve - Start the Brokkr Broker server
  • Create - Create new entities
  • Rotate - Rotate keys

brokkr-broker::cli::CreateSubcommands pub

Variants

  • Agent - Create a new agent
  • Generator - Create a new generator

brokkr-broker::cli::RotateSubcommands pub

Variants

  • Agent - Rotate an agent key
  • Generator - Rotate a generator key
  • Admin - 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()
}
}