8 lines
108 B
Python
8 lines
108 B
Python
|
|
||
|
from typing import Any
|
||
|
|
||
|
from sqlalchemy.orm import declarative_base
|
||
|
|
||
|
|
||
|
_DECL_BASE: Any = declarative_base()
|