# app/modules/loyalty/tasks/__init__.py """ Loyalty module Celery tasks. Background tasks for: - Point expiration (daily at 02:00) - Wallet synchronization (hourly) Task registration is handled by the module definition in definition.py which specifies the task paths and schedules. """ from app.modules.loyalty.tasks.point_expiration import expire_points from app.modules.loyalty.tasks.wallet_sync import sync_wallet_passes __all__ = [ "expire_points", "sync_wallet_passes", ]