]> git.ipfire.org Git - ipfire.org.git/blame - webapp/backend/__init__.py
Move everything to the root of the repository.
[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
a0048e66 9from ads import Advertisements
940227cb
MT
10from accounts import Accounts
11from banners import Banners
12from geoip import GeoIP
c37ec602 13from iuse import IUse
b3250465 14from memcached import Memcached
940227cb 15from menu import Menu
60024cc8 16from mirrors import Downloads, Mirrors
5470bdf1 17from netboot import NetBoot
940227cb 18from news import News
27066195 19from planet import Planet, PlanetEntry
940227cb
MT
20from releases import Releases
21from settings import Settings as Config
372efc19 22from stasy import Stasy
940227cb 23from tracker import Tracker
7771acea 24from wishlist import Wishlist