Spaces:
Sleeping
Sleeping
File size: 302 Bytes
1473494 1664241 1473494 4346b78 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
from fastapi import FastAPI
import aplicacion
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..."} |