Add DnsRecordCommand to CliCommands for DNS configuration

This commit is contained in:
netkas 2024-12-09 19:26:20 -05:00
parent 3a10e01bd8
commit 7bf5419ce3
4 changed files with 59 additions and 7 deletions

View file

@ -33,7 +33,7 @@
return 0;
}
print($command->getHelpMessage());
print($command->getHelpMessage() . "\n");
return 0;
}
@ -42,6 +42,11 @@
return CliCommands::INITIALIZE->handle($args);
}
if(isset($args[CliCommands::DNS_RECORD->value]))
{
return CliCommands::DNS_RECORD->handle($args);
}
return self::displayHelp();
}