summaryrefslogtreecommitdiffstats
path: root/application/clicommands/ServicesetsCommand.php
blob: 54669d5d87327b3d20652a9af023269a50898964 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

namespace Icinga\Module\Director\Clicommands;

use Icinga\Module\Director\Cli\ObjectsCommand;

/**
 * Manage Icinga Service Sets
 *
 * Use this command to list Icinga Service Set objects
 */
class ServicesetsCommand extends ObjectsCommand
{
    protected $type = 'ServiceSet';
}