| 123456789101112 |
- """Instantiates global DirectNotify used in Direct."""
- __all__ = ['directNotify', 'giveNotify']
- from . import DirectNotify
- #: The global :class:`~.DirectNotify.DirectNotify` object.
- directNotify = DirectNotify.DirectNotify()
- #: Shorthand function for adding a DirectNotify category to a given class
- #: object. Alias of `.DirectNotify.DirectNotify.giveNotify`.
- giveNotify = directNotify.giveNotify
|