feat: processes and process runs CRUD

This commit is contained in:
2026-03-01 22:04:24 +00:00
parent dbd40485ba
commit 21bbb169f9
14 changed files with 1095 additions and 0 deletions

View File

@@ -39,6 +39,7 @@ from routers import (
weblinks as weblinks_router,
appointments as appointments_router,
time_tracking as time_tracking_router,
processes as processes_router,
)
@@ -193,3 +194,4 @@ app.include_router(decisions_router.router)
app.include_router(weblinks_router.router)
app.include_router(appointments_router.router)
app.include_router(time_tracking_router.router)
app.include_router(processes_router.router)