Sign in
android-kvm
/
buildroot
/
refs/heads/master
/
.
/
support
/
testing
/
tests
/
package
/
sample_python_fastapi.py
blob: ee60be1f964d199ffd46e7402dc3ca3fb4585e95 [
file
] [
log
] [
blame
] [
edit
]
from
fastapi
import
FastAPI
app
=
FastAPI
()
@app
.
get
(
"/"
)
async
def
root
():
return
{
"message"
:
"Hello World"
}