Forked from https://framagit.org/bortzmeyer/dns-lg
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.
13 lines
319 B
13 lines
319 B
!/usr/bin/env python |
|
|
|
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
|
|
|