What's Changed
- fix: better handling of route return type by @AntoineRR in #349
- fix: windows support by @sansyrox in #354
Full Changelog: v0.21.0...v0.22.0
Latest Docs available at : https://sansyrox.github.io/robyn/#/features?id=response-object
Code Sample
from robyn.robyn import Response
@app.get("/response")
async def response(request):
return Response(status_code=200, headers={}, body="OK")