mirror of
https://github.com/rjNemo/graphql_python_template
synced 2026-06-06 02:26:47 +00:00
8 lines
172 B
Python
8 lines
172 B
Python
from typing import List
|
|
|
|
from app.models.todo import Todo
|
|
from app.repositories.todos import get_all_todos
|
|
|
|
|
|
def read_all_todos() -> List[Todo]:
|
|
return get_all_todos()
|