]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/webapp/backend/__init__.py
Update tracker websites. Show more information about the torrents.
[people/shoehn/ipfire.org.git] / www / 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 accounts import Accounts
10 from banners import Banners
11 from geoip import GeoIP
12 from iuse import IUse
13 from memcached import Memcached
14 from menu import Menu
15 from mirrors import Downloads, Mirrors
16 from netboot import NetBoot
17 from news import News
18 from planet import Planet, PlanetEntry
19 from releases import Releases
20 from settings import Settings as Config
21 from stasy import Stasy
22 from tracker import Tracker