mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-30 13:50:55 +00:00
9 lines
187 B
Python
9 lines
187 B
Python
import uwsgi
|
|
import sys
|
|
|
|
if uwsgi.load_plugin(0, "plugins/psgi/psgi_plugin.so", "mojoapp.pl"):
|
|
print "PSGI plugin loaded"
|
|
else:
|
|
print "unable to load PSGI plugin"
|
|
sys.exit(1)
|