2021-03-16 10:06:56 +01:00
|
|
|
#!/usr/bin/python3
|
|
|
|
from app import App
|
2021-05-05 16:59:41 +02:00
|
|
|
from app.cmd_parser import CommandLineParser
|
2021-03-16 10:06:56 +01:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2021-05-05 16:59:41 +02:00
|
|
|
args = CommandLineParser.parse()
|
|
|
|
app = App(args)
|
2021-03-16 10:06:56 +01:00
|
|
|
app.run()
|