8 lines
131 B
Python
8 lines
131 B
Python
#!/usr/bin/python
|
|
|
|
import sys
|
|
sys.path.insert(0, '/usr/share/projects/wsgi_apps/flowers')
|
|
|
|
from flowers import app as application
|
|
|