Moibe's picture
Funciones listas
4346b78
raw
history blame
283 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def hello():
return {"Status":"Deployed"}
@app.get("/getTokens")
def getTokens():
return {"Status":"Getting Tokens..."}
@app.get("/debitTokens")
def debitTokens():
return {"Status":"Debitting tokens..."}