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