ngeboot / app.py
Riza Masykur
ok
f2c7219
raw
history blame contribute delete
202 Bytes
import os
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
@app.get("/gas")
def greet_ajson():
return {"Hello": os.getenv("SITENAME")}