Extract Seed and AppSettings to utils

This commit is contained in:
Michael Bradley 2025-05-18 23:12:00 -04:00
parent 9be7b102d7
commit b7780b8862
Signed by: MichaelBradley
SSH key fingerprint: SHA256:BKO2eI2LPsCbQS3n3i5SdwZTAIV3F1lHezR07qP+Ob0
5 changed files with 43 additions and 35 deletions

10
src/utils/app_settings.rs Normal file
View file

@ -0,0 +1,10 @@
use clap::Parser;
use super::Seed;
#[derive(Parser)]
#[command(version, about)]
pub struct AppSettings {
#[arg(short, long, default_value = "")]
pub seed: Seed,
}