mirror of
https://github.com/ihmily/StreamCap.git
synced 2026-05-08 06:26:13 +08:00
* refactor: restructure app directory for better organization * update: add missing changes to __init__.py
9 lines
204 B
Python
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"]
|