mirror of
https://github.com/NanmiCoder/MediaCrawler.git
synced 2026-02-24 00:50:47 +08:00
4 lines
117 B
Python
4 lines
117 B
Python
from contextvars import ContextVar
|
|
|
|
request_keyword_var: ContextVar[str] = ContextVar("request_keyword", default="")
|