cli/unseed: rename options to args

Have consistent naming for args
This commit is contained in:
Fintan Halpenny 2025-10-29 10:31:07 +00:00 committed by Lorenz Leutgeb
parent 6ca1292350
commit 5053a1aa77
1 changed files with 2 additions and 2 deletions

View File

@ -7,11 +7,11 @@ use crate::terminal as term;
pub use args::Args;
pub(crate) use args::ABOUT;
pub fn run(options: Args, ctx: impl term::Context) -> anyhow::Result<()> {
pub fn run(args: Args, ctx: impl term::Context) -> anyhow::Result<()> {
let profile = ctx.profile()?;
let mut node = radicle::Node::new(profile.socket());
for rid in options.rids {
for rid in args.rids {
delete(rid, &mut node, &profile)?;
}