gas/gas/apps.py

13 lines
270 B
Python

from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class GASConfig(AppConfig):
name = 'gas'
verbose_name = _('GAS')
def ready(self):
from .sites import site
super().ready()
site.autodiscover()