login #1

Merged
v4l3n71n merged 10 commits from login into master 2023-10-12 21:57:27 +00:00
4 changed files with 9 additions and 0 deletions
Showing only changes of commit 524b4763b7 - Show all commits

0
app/__init__.py Normal file
View File

0
app/main.py Normal file
View File

7
app/routers/users.py Normal file
View File

@ -0,0 +1,7 @@
from fastapi import APIRouter
router = APIRouter()
@router.get("/users/", tags=["users"])
async def read_users():
return [{"username":"toto"}]

2
requierements.txt Normal file
View File

@ -0,0 +1,2 @@
fastapi
uvicorn[standard]