Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
iteratehack
/
deepbattler
like
1
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8036a6e
deepbattler
/
app.py
wyksdsg
Create app.py
8036a6e
verified
23 days ago
raw
Copy download link
history
blame
142 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
root
():
return
{
"status"
:
"ok"
,
"message"
:
"DeepBattler Space is running"
}