5 lines
110 B
Python
5 lines
110 B
Python
|
|
"""Database base model."""
|
||
|
|
|
||
|
|
from sqlalchemy.ext.declarative import declarative_base
|
||
|
|
|
||
|
|
Base = declarative_base()
|