Files
58954960-0175-4111-a4e3-44d…/src/main.py
2026-07-08 17:52:40 +09:00

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 !"}