Initial commit

This commit is contained in:
llm-bot
2026-07-08 17:52:40 +09:00
commit 1f079d5c43
9 changed files with 469 additions and 0 deletions

10
src/main.py Normal file
View File

@@ -0,0 +1,10 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
"""
This is an api that says, "Hello!"
"""
return {"response": "Hello ! Hang test !"}