Add DnsRecordCommand to CliCommands for DNS configuration
This commit is contained in:
parent
3a10e01bd8
commit
7bf5419ce3
4 changed files with 59 additions and 7 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue