Spaces:
Sleeping
Sleeping
| 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 | |
| } | |
| ``` | |