mirror of
https://github.com/flibusta-apps/library_updater.git
synced 2025-12-06 15:45:36 +01:00
9 lines
137 B
Python
9 lines
137 B
Python
from enum import Enum
|
|
|
|
|
|
class UpdaterTypes(Enum):
|
|
FL = "fl"
|
|
|
|
|
|
UPDATERS: dict[UpdaterTypes, str] = {UpdaterTypes.FL: "run_fl_update"}
|