e5a586f903
Move business code under modules/, env template to config/, PM2 single qihuo process, and _legacy shims for old imports. Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
286 B
Python
9 lines
286 B
Python
# Copyright (c) 2025-2026 马建军. All rights reserved.
|
|
|
|
"""Core bootstrap and shared types."""
|
|
|
|
from modules.core.bootstrap import register_all_modules, start_module_workers
|
|
from modules.core.deps import AppDeps
|
|
|
|
__all__ = ["AppDeps", "register_all_modules", "start_module_workers"]
|