Spaces:
Sleeping
Sleeping
File size: 530 Bytes
64ac0c7 02215ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
---
title: ErasLangBackend
emoji: 🎵
colorFrom: purple
colorTo: pink
sdk: docker
app_port: 7860
pinned: false
---
# ErasLang API
FastAPI backend for the ErasLang programming language.
## Endpoints
- `GET /` - Health check
- `POST /perform` - Execute ErasLang code
## Request Format
```json
{
"code": "ARE YOU READY FOR IT?\n BLANK SPACE x\n YOU BELONG WITH ME 13\n SPEAK NOW x\nLONG LIVE",
"inputs": [1989]
}
```
## Response Format
```json
{
"status": "success",
"output": "13\n",
"error": null
}
```
|