()
| 31 | |
| 32 | @app.route("/worker") |
| 33 | async def add_worker(): |
| 34 | worker = await Workers.create(status=choice(STATUSES)) # nosec |
| 35 | return str(worker) |
| 36 | |
| 37 | |
| 38 | register_tortoise( |
nothing calls this directly
no test coverage detected
searching dependent graphs…