File size: 184 Bytes
fe8f86c
 
 
 
 
 
b324b45
 
 
becee40
b324b45
fe8f86c
 
becee40
 
fe4e244
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
print("Hello")

from fastapi import FastAPI

app = FastAPI()


from app.test import test



@app.get("/")
async def read_root():
    result = test() 
    
    return {"Hello": "World"}