mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 20:08:10 +01:00
126347b694
[dgit import orig notmuch_0.38.2.orig.tar.xz]
11 lines
229 B
Python
11 lines
229 B
Python
#!/usr/bin/env python3
|
|
|
|
# to launch nmweb from gunicorn.
|
|
|
|
from nmweb import urls, index, search, show
|
|
import web
|
|
|
|
app = web.application(urls, globals())
|
|
|
|
# get the wsgi app from web.py application object
|
|
wsgiapp = app.wsgifunc()
|