__init__.py 338 B

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