mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
11 lines
158 B
Python
11 lines
158 B
Python
|
from __future__ import annotations
|
||
|
import sqlalchemy.ext.declarative as sed
|
||
|
|
||
|
|
||
|
Base: sed.declarative_base = sed.declarative_base()
|
||
|
|
||
|
|
||
|
__all__ = (
|
||
|
"Base",
|
||
|
)
|