flask/examples/patterns/largerapp/yourapplication/__init__.py

14 lines
237 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
"""
yourapplication
~~~~~~~~~~~~~~~
:copyright: © 2010 by the Pallets team.
:license: BSD, see LICENSE for more details.
"""
from flask import Flask
2017-05-27 12:47:33 -07:00
app = Flask('yourapplication')
2017-05-27 12:47:33 -07:00
import yourapplication.views