brain2 / app.py
Elliotasdasdasfasas's picture
Initial Sanity Check App
0092f2c
raw
history blame contribute delete
116 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}