mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-07 05:00:16 -04:00
13 lines
358 B
Python
13 lines
358 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
|