APIs / main.py
Dev Paragiri
Wallet v1
7a36c97
raw
history blame contribute delete
No virus
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}