Fix #4 hotfix: restore missing router = APIRouter in steps.py
Some checks failed
Deploy Tracker / deploy (push) Failing after 3s

This commit is contained in:
markov 2026-02-26 15:17:35 +01:00
parent 73c4ace9e9
commit 0c44a8b384

View File

@ -12,6 +12,8 @@ from ..models import Step, Task
from .schemas import StepOut from .schemas import StepOut
from .converters import step_out from .converters import step_out
router = APIRouter(tags=["steps"])
class StepCreate(BaseModel): class StepCreate(BaseModel):
title: str title: str