Spaces:
Runtime error
Runtime error
| ''' | |
| from src.telegram_bot import main as telegram_bot | |
| if __name__ == "__main__": | |
| telegram_bot() | |
| ''' | |
| from fastapi import FastAPI | |
| import uvicorn | |
| app = FastAPI() | |
| def read_root(): | |
| return {"Hello": "World"} | |