mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-10 06:10:17 -04:00
13 lines
346 B
Python
13 lines
346 B
Python
"""Abstract superclass of all entities in the application.
|
|
|
|
There is no reason to instantiate this class directly. Instead, look toward the child classes.
|
|
Additionally, import from the top-level entities file which indexes all entity implementations.
|
|
"""
|
|
|
|
|
|
from sqlalchemy.orm import DeclarativeBase
|
|
|
|
|
|
class EntityBase(DeclarativeBase):
|
|
pass
|