PamGram/utils/const/_single.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
120 B
Python
Raw Normal View History

from signal import SIGABRT, SIGINT, SIGTERM
__all__ = ("HANDLED_SIGNALS",)
HANDLED_SIGNALS = SIGINT, SIGTERM, SIGABRT