Initial commit
This commit is contained in:
9
router/test.py
Normal file
9
router/test.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from fastapi import APIRouter
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
@router.get("/")
|
||||
async def hello():
|
||||
return {
|
||||
"hello" : "world"
|
||||
}
|
||||
Reference in New Issue
Block a user