PaiGram/utils/enums.py

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

14 lines
171 B
Python
Raw Normal View History

from enum import IntEnum
__all__ = ("Priority",)
class Priority(IntEnum):
"""优先级"""
Lowest = 0
Low = 4
Normal = 8
High = 12
Highest = 16