mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-15 02:40:58 +00:00
10 lines
220 B
Python
10 lines
220 B
Python
try:
|
|
from notifications.signals import notify
|
|
except ImportError:
|
|
pass
|
|
|
|
try:
|
|
from notifications.urls import urlpatterns
|
|
urls = (urlpatterns, 'notifications', 'notifications')
|
|
except ImportError:
|
|
pass
|