Initial commit.
[wrw.git] / wrw / util.py
1 import req, dispatch
2
3 def wsgiwrap(callable):
4     def wrapper(env, startreq):
5         return dispatch.handle(req.request(env), startreq, callable)
6     return wrapper