wip: types

This commit is contained in:
Aiden McClelland
2025-11-10 09:45:30 -07:00
parent f83df5682c
commit 14fcb60670
50 changed files with 529 additions and 298 deletions

View File

@@ -32,6 +32,7 @@ pub fn admin_api<C: Context>() -> ParentHandler<C> {
"add",
from_fn_async(cli_add_admin)
.no_display()
.no_ts()
.with_about("Add admin signer"),
)
.subcommand(
@@ -72,7 +73,7 @@ fn signers_api<C: Context>() -> ParentHandler<C> {
)
.subcommand(
"add",
from_fn_async(cli_add_signer).with_about("Add signer"),
from_fn_async(cli_add_signer).no_ts().with_about("Add signer"),
)
.subcommand(
"edit",