sdi-checker/sdi_checker/sdi_checker_cli.py
Guillaume RYCKELYNCK c6c2ee9c04 first commit
2024-06-22 22:00:42 +02:00

16 lines
340 B
Python

import os
from sdi_checker import config
from sdi_checker.app_cli.application import ApplicationCli
def run():
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
CONFIG_FILE = os.path.join(ROOT_DIR, config.__config_file__)
app = ApplicationCli(config_file=CONFIG_FILE)
app.run()
if __name__ == "__main__":
run()