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