diff options
Diffstat (limited to 'commcrawler/apps.py')
-rw-r--r-- | commcrawler/apps.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/commcrawler/apps.py b/commcrawler/apps.py new file mode 100644 index 0000000..79e032d --- /dev/null +++ b/commcrawler/apps.py @@ -0,0 +1,7 @@ +from django.apps import AppConfig +from django.utils.translation import ugettext_lazy as _ + + +class CommCrawlerConfig(AppConfig): + name = 'commcrawler' + verbose_name = _("Crawler") |