Update main.py
Browse files
main.py
CHANGED
@@ -16,6 +16,7 @@ app.add_middleware(
|
|
16 |
app = FastAPI()
|
17 |
@app.post("/test")
|
18 |
async def test(request:Request):
|
|
|
19 |
body = await request.json()
|
20 |
token_url = "https://oauth2.googleapis.com/token"
|
21 |
data= {
|
|
|
16 |
app = FastAPI()
|
17 |
@app.post("/test")
|
18 |
async def test(request:Request):
|
19 |
+
print("inside test")
|
20 |
body = await request.json()
|
21 |
token_url = "https://oauth2.googleapis.com/token"
|
22 |
data= {
|