1234567891011121314151617 |
- # -*- coding: utf-8 -*-
- """
- flaskbb
- ~~~~~~~
- FlaskBB is a forum software written in python using the
- microframework Flask.
- :copyright: (c) 2014 by the FlaskBB Team.
- :license: BSD, see LICENSE for more details.
- """
- __version__ = '1.0' # noqa
- import logging
- logger = logging.getLogger(__name__)
- from flaskbb.app import create_app # noqa
|