mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 12:02:16 +00:00
233e7ab58d
Co-authored-by: luoshuijs <luoshuijs@outlook.com> Co-authored-by: Karako <karakohear@gmail.com> Co-authored-by: xtaodada <xtao@xtaolink.cn>
6 lines
120 B
Python
6 lines
120 B
Python
from signal import SIGABRT, SIGINT, SIGTERM
|
|
|
|
__all__ = ("HANDLED_SIGNALS",)
|
|
|
|
HANDLED_SIGNALS = SIGINT, SIGTERM, SIGABRT
|