Add GHOST to position list

This commit is contained in:
Cal Corum 2023-10-04 23:25:25 -05:00
parent c9655b8266
commit 523b0a760e

View File

@ -18,7 +18,7 @@ router = APIRouter(
tags=['plays']
)
POS_LIST = Literal['C', '1B', '2B', '3B', 'SS', 'LF', 'CF', 'RF', 'P', 'DH', 'PH', 'PR']
POS_LIST = Literal['C', '1B', '2B', '3B', 'SS', 'LF', 'CF', 'RF', 'P', 'DH', 'PH', 'PR', 'GHOST']
class PlayModel(BaseModel):