deepbattler / app.py
wyksdsg's picture
Create app.py
8036a6e verified
raw
history blame
142 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"status": "ok", "message": "DeepBattler Space is running"}