docs: add module-level docstring to signals module

Documents the Flask signal system, explaining its role in providing
Blinker signals for key application events like request lifecycle,
template rendering, and application context changes.
This commit is contained in:
SUPREME 2026-05-31 13:23:40 +05:30
parent 954f5684e4
commit c6e53304df

View file

@ -1,3 +1,13 @@
"""
Application signals for Flask.
Provides Blinker signals for key application events such as request
lifecycle, template rendering, and application context changes.
These signals allow decoupled components to react to framework events
without modifying core code.
"""
from __future__ import annotations
from blinker import Namespace