forked from nat/sludge
9 lines
156 B
Python
9 lines
156 B
Python
from .response import Response
|
|
|
|
from typing import Callable, List
|
|
|
|
type Patcher = Callable[[Response, 'Request'], Response]
|
|
|
|
patchers: List[Patcher] = [
|
|
]
|