]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - webapp/backend/__init__.py
Major update of the webapp.
[people/shoehn/ipfire.org.git] / webapp / backend / __init__.py
CommitLineData
940227cb
MT
1#!/usr/bin/python
2
18e60079
MT
3from tornado.options import define, options, parse_command_line
4
5# Command line options
6define("debug", default=False, help="Run in debug mode", type=bool)
7parse_command_line()
d9fa77a7 8
a6dc0bad 9from base import Backend