flask/examples/flaskr/flaskr/_cliapp.py
2017-04-02 12:29:37 -04:00

15 lines
No EOL
297 B
Python

# -*- coding: utf-8 -*-
"""
Flaskr
~~~~~~
A microblog example application written as Flask tutorial with
Flask and sqlite3.
:copyright: (c) 2015 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
from flaskr.factory import create_app
app = create_app()