mirror of https://github.com/mitsuhiko/flask.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
227 B
9 lines
227 B
14 years ago
|
from flask import Flask
|
||
|
|
||
|
app = Flask(__name__)
|
||
10 years ago
|
app.config['DEBUG'] = True
|
||
14 years ago
|
from blueprintapp.apps.admin import admin
|
||
|
from blueprintapp.apps.frontend import frontend
|
||
14 years ago
|
app.register_blueprint(admin)
|
||
|
app.register_blueprint(frontend)
|