trRun / app.py
JoeMiNot's picture
Update app.py
d1240bb verified
raw
history blame contribute delete
103 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get('/')
async def get() :
return {"new":"data"}