15 lines
230 B
PHP
15 lines
230 B
PHP
|
<?php
|
||
|
|
||
|
namespace Icinga\Module\Director\Clicommands;
|
||
|
|
||
|
use Icinga\Module\Director\Cli\ObjectsCommand;
|
||
|
|
||
|
/**
|
||
|
* Manage Icinga Hosts
|
||
|
*
|
||
|
* Use this command to list Icinga Host objects
|
||
|
*/
|
||
|
class HostsCommand extends ObjectsCommand
|
||
|
{
|
||
|
}
|