Files
StreamCap/app/__init__.py
2025-03-24 19:55:40 +08:00

9 lines
189 B
Python

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