mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-25 04:33:44 +00:00
19 lines
502 B
Python
19 lines
502 B
Python
from __future__ import absolute_import
|
|
|
|
__title__ = 'fobi.contrib.plugins.form_handlers.mail.apps'
|
|
__author__ = 'Artur Barseghyan <artur.barseghyan@gmail.com>'
|
|
__copyright__ = '2014-2016 Artur Barseghyan'
|
|
__license__ = 'GPL 2.0/LGPL 2.1'
|
|
__all__ = ('Config',)
|
|
|
|
try:
|
|
from django.apps import AppConfig
|
|
|
|
class Config(AppConfig):
|
|
"""Config."""
|
|
|
|
name = 'fobi.contrib.plugins.form_handlers.mail'
|
|
label = 'fobi_contrib_plugins_form_handlers_mail'
|
|
|
|
except ImportError:
|
|
pass
|