mirror of
https://github.com/rjNemo/graphql_python_template
synced 2026-06-06 02:26:47 +00:00
6 lines
166 B
Python
6 lines
166 B
Python
from app.repositories.todos import todo_exists, remove_todo
|
|
|
|
|
|
def delete_todo(todo_id: str) -> None:
|
|
if todo_exists(todo_id):
|
|
return remove_todo(todo_id)
|