DockerLearn / main.py
tysond's picture
Update main.py
550ec40
raw
history blame contribute delete
No virus
132 Bytes
from fastapi import FastAPI
from app.main import app
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}