1
0
Fork 0
mirror of synced 2024-06-29 03:31:06 +12:00
Rare/rare/shared/workers/__init__.py
loathingKernel 5307932656
RareCore: Replace individual fetch workers with a single one.
The workers where co-dependent anyways as the non-asset worker
was started after the games worker had sent back its results.
By combining them we can move any data manipulations to the worker
and simplify the handling in RareCore.
2023-05-29 16:40:36 +03:00

8 lines
260 B
Python

from .fetch import FetchWorker
from .install_info import InstallInfoWorker
from .move import MoveWorker
from .uninstall import UninstallWorker
from .verify import VerifyWorker
from .wine_resolver import OriginWineWorker
from .worker import Worker, QueueWorker