feat(engine): scaffold runtime skeleton

This commit is contained in:
2025-10-26 00:02:37 -06:00
parent e16746d407
commit e09d3a3a51
9 changed files with 402 additions and 0 deletions

11
Data/Engine/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
"""Borealis Engine runtime package.
This package houses the next-generation server runtime that will gradually
replace :mod:`Data.Server.server`. Stage 1 focuses on providing a skeleton
application factory and service placeholders so later stages can port
features incrementally.
"""
from .server import create_app, EngineContext # re-export for convenience
__all__ = ["create_app", "EngineContext"]