9 lines
181 B
Python
9 lines
181 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class RecipeConfig(AppConfig):
|
|
|
|
name = 'recipe'
|
|
verbose_name = _('RecipeConfig')
|