mirror of
https://github.com/nihilvux/bancho.py.git
synced 2026-09-12 21:23:07 -07:00
16 lines
326 B
Python
16 lines
326 B
Python
from __future__ import annotations
|
|
|
|
from sqlalchemy.orm import DeclarativeMeta
|
|
from sqlalchemy.orm import registry
|
|
|
|
mapper_registry = registry()
|
|
|
|
|
|
class Base(metaclass=DeclarativeMeta):
|
|
__abstract__ = True
|
|
|
|
registry = mapper_registry
|
|
metadata = mapper_registry.metadata
|
|
|
|
__init__ = mapper_registry.constructor
|