Разработана утилита для многопоточного сжатия файлов WebAssembly
This commit is contained in:
13
config/models.py
Normal file
13
config/models.py
Normal file
@ -0,0 +1,13 @@
|
||||
from pathlib import PurePath
|
||||
from typing import Callable, Type
|
||||
|
||||
|
||||
class BaseAlgorithm:
|
||||
compress: Callable
|
||||
name: str
|
||||
enabled: bool
|
||||
path: PurePath
|
||||
level: int
|
||||
|
||||
|
||||
Algorithm = Type[BaseAlgorithm]
|
Reference in New Issue
Block a user