Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | """ |
||
15 | class SpawnerApplication(Application): |
||
16 | """ |
||
17 | The Enarksh spawner application. |
||
18 | """ |
||
19 | |||
20 | # ------------------------------------------------------------------------------------------------------------------ |
||
21 | def get_default_commands(self): |
||
22 | """ |
||
23 | Returns the default commands of this application. |
||
24 | |||
25 | :rtype: list[cleo.Command] |
||
26 | """ |
||
27 | commands = Application.get_default_commands(self) |
||
28 | |||
29 | self.add(SpawnerCommand()) |
||
30 | |||
31 | return commands |
||
32 | |||
34 |