mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-28 17:55:39 +00:00
9 lines
178 B
Python
9 lines
178 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)
|