Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
from ..constants import *
# Import all handlers
+from . import handlers
from . import auth
from . import builders
from . import builds
from . import sources
from . import uploads
from . import users
-from .handlers import *
class Application(tornado.web.Application):
def __init__(self, **kwargs):
tornado.web.Application.__init__(self, [
# Entry site that lead the user to index
- (r"/", IndexHandler),
+ (r"/", handlers.IndexHandler),
# Authentication
(r"/login", auth.LoginHandler),