9 lines
204 B
Python
9 lines
204 B
Python
|
"""instantiate global DirectNotify used in Direct"""
|
||
|
|
||
|
__all__ = ['directNotify', 'giveNotify']
|
||
|
|
||
|
from . import DirectNotify
|
||
|
|
||
|
directNotify = DirectNotify.DirectNotify()
|
||
|
giveNotify = directNotify.giveNotify
|