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:
parent
954f5684e4
commit
c6e53304df
1 changed files with 10 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue