10 lines
173 B
Python
10 lines
173 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
@app.get("/")
|
|
def root():
|
|
"""
|
|
This is an api that says, "Hello!"
|
|
"""
|
|
return {"response": "Hello ! Hang test !"} |