on_event.py 370 B

1234567891011121314
  1. from ..types import StartupShutdownType
  2. decorated_startup: list[StartupShutdownType] = []
  3. decorated_shutdown: list[StartupShutdownType] = []
  4. def on_startup(fn: StartupShutdownType) -> StartupShutdownType:
  5. decorated_startup.append(fn)
  6. return fn
  7. def on_shutdown(fn: StartupShutdownType) -> StartupShutdownType:
  8. decorated_shutdown.append(fn)
  9. return fn