16 lines
375 B
Python
16 lines
375 B
Python
from typing import List, Callable
|
|
from szurubooru.rest.context import Context
|
|
|
|
|
|
# pylint: disable=invalid-name
|
|
pre_hooks = [] # type: List[Callable[[Context], None]]
|
|
post_hooks = [] # type: List[Callable[[Context], None]]
|
|
|
|
|
|
def pre_hook(handler: Callable) -> None:
|
|
pre_hooks.append(handler)
|
|
|
|
|
|
def post_hook(handler: Callable) -> None:
|
|
post_hooks.insert(0, handler)
|