-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
31 lines (27 loc) · 914 Bytes
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# --------------------------------------------------------
# Licensed under the terms of the BSD 3-Clause License
# (see LICENSE for details).
# Copyright © 2018-2025, A.A. Suvorov
# All rights reserved.
# --------------------------------------------------------
# https://github.com/smartlegionlab/
# --------------------------------------------------------
from utils.managers import AppManager
from utils.config import Config
from utils.github_tools import GitHubDataMaster
from utils.parsers import ConfigParser
from utils.printers import SmartPrinter
def main():
config = Config()
printer = SmartPrinter()
config_parser = ConfigParser()
github_data_master = GitHubDataMaster()
app = AppManager(
config=config,
printer=printer,
config_parser=config_parser,
github_data_master=github_data_master
)
app.run()
if __name__ == '__main__':
main()