Spaces:
Sleeping
Sleeping
from fastapi import FastAPI | |
import aplicacion | |
app = FastAPI() | |
def hello(): | |
return {"Status":"Deployed"} | |
def getTokens(): | |
return {"Status":"Getting Tokens..."} | |
def debitTokens(): | |
return {"Status":"Debitting tokens..."} |