You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dns-lg/sample-wsgi-dnslg.py

14 lines
321 B

#!/usr/bin/env python3
import DNSLG
# Replace by suitable values.
# Note that some parameters can be set here and some via environment
# variables. There is no consistency (TODO).
email_admin = None
url_doc = None
url_css = None
querier = DNSLG.Querier(email_admin, url_doc, url_css)
application = querier.application