File size: 381 Bytes
eee346e
 
 
 
 
3ec4ff0
 
eee346e
 
 
 
 
3ec4ff0
 
 
 
 
eee346e
 
3ec4ff0
eee346e
 
 
 
 
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
#!/usr/bin/env python3

import logging
import os
from pathlib import Path
from typing import Dict






def main() -> None:
    """Main application entry point."""
    try:
        print("Start app...")
        import src.modules.api

    except Exception as e:
        print(f"Application failed to start: {e}", exc_info=True)
        raise


if __name__ == "__main__":
    main()