Files
semios-packages/hooks/__init__.py
T
sisungo 3d480b48f3 Initial commit
Signed-off-by: sisungo <[email protected]>
2026-06-08 16:43:26 +08:00

10 lines
185 B
Python

from typing import Callable, TypeAlias
from . import autostrip
PostBuild: TypeAlias = Callable[[], None]
post_build: dict[str, PostBuild] = {
"autostrip": autostrip.autostrip,
}