|
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..."} |