mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-11-02 02:03:20 -05:00
20 lines
443 B
Python
20 lines
443 B
Python
import enum
|
|
|
|
from mealie.schema._mealie import MealieModel
|
|
|
|
|
|
class SupportedMigrations(str, enum.Enum):
|
|
nextcloud = "nextcloud"
|
|
chowdown = "chowdown"
|
|
copymethat = "copymethat"
|
|
paprika = "paprika"
|
|
mealie_alpha = "mealie_alpha"
|
|
tandoor = "tandoor"
|
|
plantoeat = "plantoeat"
|
|
myrecipebox = "myrecipebox"
|
|
recipekeeper = "recipekeeper"
|
|
|
|
|
|
class DataMigrationCreate(MealieModel):
|
|
source_type: SupportedMigrations
|