nateraw's picture
Create main.py
e55ed17
raw
history blame contribute delete
94 Bytes
from fastapi import FastAPI
app = FastAPI()
def read_root():
return {"Hello": "World!"}