Files
StreamCap/app/__init__.py
Hmily 142c437dbd refactor: restructure app directory for better organization (#155)
* refactor: restructure app directory for better organization

* update: add missing changes to __init__.py
2025-07-19 16:01:02 +08:00

9 lines
204 B
Python

import os
import sys
from .initialization.installation_manager import InstallationManager
execute_dir = os.path.split(os.path.realpath(sys.argv[0]))[0]
__all__ = ["InstallationManager", "execute_dir"]