container_test / app.py
lingyit1108's picture
added folder check
604292f
raw
history blame contribute delete
270 Bytes
from fastapi import FastAPI
import os
app = FastAPI()
@app.get("/")
async def root():
try:
file_ls_str = ", ".join(os.listdir("large_files"))
except:
file_ls_str = "NA"
return {"message": f"Hello World! File list: {file_ls_str}"}