__init__.py 363 B

1234567891011121314151617
  1. # -*- coding: utf-8 -*-
  2. """
  3. flaskbb.management
  4. ~~~~~~~~~~~~~~~~~~
  5. This module contains models, forms and views relevant
  6. for managing FlaskBB
  7. :copyright: (c) 2014 by the FlaskBB Team.
  8. :license: BSD, see LICENSE for more details.
  9. """
  10. import logging
  11. # force plugins to be loaded
  12. from . import plugins
  13. logger = logging.getLogger(__name__)