mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2026-02-05 20:10:31 -07:00
Assembly Management Rework - Stage 1 Complete
This commit is contained in:
27
Data/Engine/assembly_management/__init__.py
Normal file
27
Data/Engine/assembly_management/__init__.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# ======================================================
|
||||
# Data\Engine\assembly_management\__init__.py
|
||||
# Description: Exposes assembly persistence helpers for the Borealis Engine.
|
||||
#
|
||||
# API Endpoints (if applicable): None
|
||||
# ======================================================
|
||||
|
||||
"""Assembly persistence package for the Borealis Engine."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from .bootstrap import AssemblyCache, initialise_assembly_runtime
|
||||
from .databases import AssemblyDatabaseManager
|
||||
from .models import AssemblyDomain, AssemblyRecord, PayloadDescriptor, PayloadType
|
||||
from .payloads import PayloadManager
|
||||
|
||||
__all__ = [
|
||||
"AssemblyCache",
|
||||
"AssemblyDatabaseManager",
|
||||
"AssemblyDomain",
|
||||
"AssemblyRecord",
|
||||
"PayloadDescriptor",
|
||||
"PayloadType",
|
||||
"PayloadManager",
|
||||
"initialise_assembly_runtime",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user