es-gpt / main.py
hunkim's picture
Create main.py
8f53595
raw
history blame
94 Bytes
from fastapi import FastAPI
app = FastAPI()
def read_root():
return {"Hello": "World!"}