bart-test / app /main.py
epochshik's picture
.
becee40
print("Hello")
from fastapi import FastAPI
app = FastAPI()
from app.test import test
@app.get("/")
async def read_root():
result = test()
return {"Hello": "World"}