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