7 lines
120 B
Python
7 lines
120 B
Python
""" Django notifications signal file """
|
|
|
|
# -*- coding: utf-8 -*-
|
|
from django.dispatch import Signal
|
|
|
|
notify = Signal()
|