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