GreetingsIF / main.py
Dhruv Diddi
feat: add reqs and main fast api app
ff5da3d
raw
history blame
94 Bytes
from fastapi import FastAPI
app = FastAPI()
def read_root():
return {"Hello": "World!"}