Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-bonez committed Nov 15, 2024
1 parent cfa1940 commit 5603e88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/startos/src/net/acme.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,27 +231,27 @@ pub fn domain<C: Context>() -> ParentHandler<C> {
.subcommand(
"add",
from_fn_async(add_domain)
.with_about("Add a domain for which to acquire ACME certificates")
.no_display()
.with_about("Add a domain for which to acquire ACME certificates")
.with_call_remote::<CliContext>(),
)
.subcommand(
"remove",
from_fn_async(remove_domain)
.with_about("Remove a domain for which to acquire ACME certificates")
.no_display()
.with_about("Remove a domain for which to acquire ACME certificates")
.with_call_remote::<CliContext>(),
)
.subcommand(
"list",
from_fn_async(list_domains)
.with_about("List domains for which to acquire ACME certificates")
.with_custom_display_fn(|_, res| {
for domain in res {
println!("{domain}")
}
Ok(())
})
.with_about("List domains for which to acquire ACME certificates")
.with_call_remote::<CliContext>(),
)
}
Expand Down

0 comments on commit 5603e88

Please sign in to comment.