File size: 275 Bytes
a8eb386 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import os
import sys
sys.path.insert(0, os.getcwd())
from detectweb import create_app
# Create an application instance that web servers can use. We store it as
# "application" (the wsgi default) and also the much shorter and convenient
# "app".
application = create_app()
|