coding-assignment-iam/main.py
Joey Yakimowich-Payne 9eff5f08f4 Add basic outline files
2022-09-17 07:51:29 -06:00

10 lines
185 B
Python

from fastapi import FastAPI
from fastapi.responses import HTMLResponse
app = FastAPI()
html = open("index.html").read()
@app.get("/")
async def root():
return HTMLResponse(html)