Add introducer add command

- Create a command to add an introducer (with domains).
- Add a module for escaping regular expressions used in certifications
- Add some helper functions.
This commit is contained in:
Malte Meiboom
2026-05-04 22:55:02 +02:00
parent 5f50624478
commit bf53af50ec
9 changed files with 213 additions and 8 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ pub mod remove;
pub async fn dispatch(cmd: IntroducerCommand, config: HuskConfigContainer) -> Result<()> {
match cmd.subcommand {
IntroducerSubcommand::Add(add_cmd) => {
add::dispatch(add_cmd, &config).await?;
add::dispatch(add_cmd, config).await?;
},
IntroducerSubcommand::Remove(rm_cmd) => {
remove::dispatch(rm_cmd, &config).await?;