14 lines
209 B
Python
14 lines
209 B
Python
from pathlib import PurePath
|
|
from typing import Callable, Type
|
|
|
|
|
|
class BaseAlgorithm:
|
|
compress: Callable
|
|
name: str
|
|
enabled: bool
|
|
path: PurePath
|
|
level: int
|
|
|
|
|
|
Algorithm = Type[BaseAlgorithm]
|