mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-10 22:03:09 +00:00
16 lines
342 B
Python
16 lines
342 B
Python
__title__ = 'fobi.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 = label = 'fobi'
|
|
|
|
except ImportError:
|
|
pass
|