File size: 103 Bytes
d1240bb
 
 
 
 
 
 
1
2
3
4
5
6
7
from fastapi import FastAPI

app = FastAPI()

@app.get('/')
async def get() :
    return {"new":"data"}