bundled/flask/tests/moduleapp/__init__.py @ 627b1d4e0fa3 issue-93

[index] Add the owner of the cset in a td beetween id and description
author Alain Begey <alain@unlish.com>
date Sat, 15 Nov 2014 20:01:13 +0100
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)