This commit is contained in:
2025-11-07 17:07:52 +00:00
parent 58c83f6140
commit bdd0d26acb
4 changed files with 281 additions and 74 deletions

12
shared.py Normal file
View File

@@ -0,0 +1,12 @@
from enum import Enum, EnumType
from typing import Dict
from pydantic import BaseModel, ConfigDict, Field
class Item(BaseModel):
name: str
class Machine(BaseModel):
name: str