mirror of
https://github.com/ihmily/StreamCap.git
synced 2026-09-03 06:48:00 +08:00
10 lines
319 B
Python
10 lines
319 B
Python
from .core.runtime.paths import prepare_user_data_dir, resource_dir, user_data_dir
|
|
from .initialization.installation_manager import InstallationManager
|
|
|
|
prepare_user_data_dir()
|
|
|
|
execute_dir = str(user_data_dir)
|
|
resource_dir = str(resource_dir)
|
|
|
|
__all__ = ["InstallationManager", "execute_dir", "resource_dir"]
|