Skip to content

Instantly share code, notes, and snippets.

@yuuichi-fujioka
Created August 19, 2014 01:25
Show Gist options
  • Save yuuichi-fujioka/92d97bf9296223fe31d9 to your computer and use it in GitHub Desktop.
Save yuuichi-fujioka/92d97bf9296223fe31d9 to your computer and use it in GitHub Desktop.
wsgi middleware
class NPMiddleware:
def __init__(self, app):
self.app = app
def __call__(self, env, start_resp):
return self.app(env, start_resp)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment