bundled/flask/tests/moduleapp/__init__.py @ b0bcc35b016a

web: display branch name on index if other than 'default'
author Kevin Berridge <kberridge@pointeblank.net>
date Tue, 04 Sep 2012 13:03:55 -0400
parents f33efe14bff1
children (none)
from flask import Flask

app = Flask(__name__)
from moduleapp.apps.admin import admin
from moduleapp.apps.frontend import frontend
app.register_module(admin)
app.register_module(frontend)