Method
__init__
(self, description, app, subparsers, parent_parser=None)
Source from the content-addressed store, hash-verified
| 34 | |
| 35 | class RoleBranch(resource.ResourceBranch): |
| 36 | def __init__(self, description, app, subparsers, parent_parser=None): |
| 37 | super(RoleBranch, self).__init__( |
| 38 | Role, |
| 39 | description, |
| 40 | app, |
| 41 | subparsers, |
| 42 | parent_parser=parent_parser, |
| 43 | read_only=True, |
| 44 | commands={"list": RoleListCommand, "get": RoleGetCommand}, |
| 45 | ) |
| 46 | |
| 47 | |
| 48 | class RoleListCommand(resource.ResourceCommand): |
Tested by
no test coverage detected