10 lines
185 B
Python
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,
|
|
}
|