recipe-api / app.py
sharktide's picture
Create app.py
a3ac8df verified
raw
history blame
157 Bytes
from fastapi import FastAPI
import requests
import json
import time
app = FastAPI()
import os
@app.get("/")
def home():
return("Status": "Working")