"""Base class for all models.""" from app.db.base import Base # Import all models here so that Base has them before creating the metadata from app.models.task import Task __all__ = ["Base", "Task"]