A web framework written in Mojo.
NOTE: This is a work in progress. It is not ready for production use.
fromfireimportRequest, Response, app, routeasrfnindex(request: Request) ->Response:
# TODO: add response attributesreturnResponse()
fnposts(request: Request) ->Response:
returnResponse()
fnmain():
r["/"](index)
r["/posts"](posts)
app.run()