from .label_maker_credits import LabelMakerCredits

# Register all Postgres assets here
POSTGRES_ASSETS = [
    LabelMakerCredits(),
]

# When we export the lists of assets, jobs, and schedules, the autoloader in definitions.py will pick them up
assets = [postgres.asset for postgres in POSTGRES_ASSETS]
jobs = [postgres.job for postgres in POSTGRES_ASSETS if postgres.job]
schedules = [postgres.schedule_def for postgres in POSTGRES_ASSETS if postgres.schedule_def]

__all__ = ["assets", "jobs", "schedules"]
