Compare commits

..

2 Commits

Author SHA1 Message Date
Micheal Smith
f6afc959c8 Added README, and LICENSE. 2025-08-11 23:42:42 -05:00
Micheal Smith
b86e46fe00 Added chroot support. 2025-08-11 19:31:38 -05:00

View File

@@ -1,9 +1,15 @@
use clap::Parser;
use color_eyre::{Result, eyre::WrapErr};
use color_eyre::{
Result,
eyre::WrapErr,
};
use config::Config;
use directories::ProjectDirs;
use std::path::PathBuf;
use tracing::{info, instrument};
use tracing::{
info,
instrument,
};
// TODO: use [clap(long, short, help_heading = Some(section))]
#[derive(Clone, Debug, Parser)]
@@ -32,7 +38,7 @@ pub(crate) struct Args {
#[arg(long)]
pub(crate) model: Option<String>,
#[arg(long = "channel")]
#[arg(long)]
/// List of IRC channels to join.
pub(crate) channels: Option<Vec<String>>,