Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | """ |
||
2 | Kerapu |
||
3 | """ |
||
4 | from kerapu.application.KerapuApplication import KerapuApplication |
||
5 | |||
6 | |||
7 | def main(): |
||
8 | """ |
||
9 | Entry point for the kerapu console script. |
||
10 | """ |
||
11 | application = KerapuApplication() |
||
12 | status = application.run() |
||
13 | |||
14 | exit(status) |
||
15 |