]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - webapp/backend/__init__.py
Revert "geoip: Tolerate lots of spaces in database fields"
[people/shoehn/ipfire.org.git] / webapp / backend / __init__.py
1 #!/usr/bin/python
2
3 from tornado.options import define, options, parse_command_line
4
5 # Command line options
6 define("debug", default=False, help="Run in debug mode", type=bool)
7 parse_command_line()
8
9 from base import Backend