feat: CLI

This commit is contained in:
2025-03-06 23:29:13 +00:00
parent cb813a7050
commit 48dc9ec4df
8 changed files with 161 additions and 15 deletions

View File

@ -15,6 +15,7 @@ pub struct AppData {
pub profile: Option<Profile>,
pub pkgs: PackageStore,
pub cfg: GlobalConfig,
pub remain_open: bool,
}
impl AppData {
@ -32,6 +33,7 @@ impl AppData {
profile,
pkgs: PackageStore::new(apph.clone()),
cfg,
remain_open: true
}
}