mirror of
https://github.com/rjNemo/graphql_python_template
synced 2026-06-06 02:26:47 +00:00
6 lines
149 B
Python
6 lines
149 B
Python
from app.models.user import User
|
|
from app.repositories.users import add_user
|
|
|
|
|
|
def create_user(username: str) -> User:
|
|
return add_user(username)
|