mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-10-26 21:41:57 -06:00
feat(engine): scaffold runtime skeleton
This commit is contained in:
11
Data/Engine/__init__.py
Normal file
11
Data/Engine/__init__.py
Normal 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"]
|
||||
Reference in New Issue
Block a user