]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - www/webapp/backend/__init__.py
Website update.
[people/shoehn/ipfire.org.git] / www / 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
940227cb
MT
9from accounts import Accounts
10from banners import Banners
11from geoip import GeoIP
c37ec602 12from iuse import IUse
b3250465 13from memcached import Memcached
940227cb 14from menu import Menu
60024cc8 15from mirrors import Downloads, Mirrors
5470bdf1 16from netboot import NetBoot
940227cb 17from news import News
27066195 18from planet import Planet, PlanetEntry
940227cb
MT
19from releases import Releases
20from settings import Settings as Config
372efc19 21from stasy import Stasy
940227cb 22from tracker import Tracker