Skip to content

Commit

Permalink
CLI: mods then consts
Browse files Browse the repository at this point in the history
  • Loading branch information
svix-onelson committed Dec 20, 2024
1 parent d02b78b commit 02391ba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions svix-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ use cmds::api::application::ApplicationArgs;
use colored_json::{ColorMode, Output};
use concolor_clap::{Color, ColorChoice};

const VERSION: &str = env!("CARGO_PKG_VERSION");
const BIN_NAME: &str = env!("CARGO_BIN_NAME");
mod cli_types;
mod cmds;
mod config;
mod json;
mod relay;

const VERSION: &str = env!("CARGO_PKG_VERSION");
const BIN_NAME: &str = env!("CARGO_BIN_NAME");

#[derive(Parser)]
#[command(version, about, long_about = None, bin_name = BIN_NAME)]
#[clap(color = concolor_clap::color_choice())]
Expand Down

0 comments on commit 02391ba

Please sign in to comment.