mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-10-26 21:41:57 -06:00
Add Engine SQLite infrastructure
This commit is contained in:
21
Data/Engine/repositories/sqlite/__init__.py
Normal file
21
Data/Engine/repositories/sqlite/__init__.py
Normal file
@@ -0,0 +1,21 @@
|
||||
"""SQLite persistence helpers for the Borealis Engine."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from .connection import (
|
||||
SQLiteConnectionFactory,
|
||||
configure_connection,
|
||||
connect,
|
||||
connection_factory,
|
||||
connection_scope,
|
||||
)
|
||||
from .migrations import apply_all
|
||||
|
||||
__all__ = [
|
||||
"SQLiteConnectionFactory",
|
||||
"configure_connection",
|
||||
"connect",
|
||||
"connection_factory",
|
||||
"connection_scope",
|
||||
"apply_all",
|
||||
]
|
||||
Reference in New Issue
Block a user