Source code for i18next.apps

__title__ = 'i18next.apps'
__author__ = 'Artur Barseghyan <artur.barseghyan@gmail.com>'
__copyright__ = '2015 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('Config',)

try:
    from django.apps import AppConfig

[docs] class Config(AppConfig): name = 'i18next' label = 'i18next'
except ImportError: pass