mirror of
https://github.com/Matthww/TuneBot.git
synced 2026-09-21 23:27:47 +00:00
17 lines
270 B
Python
17 lines
270 B
Python
from enum import auto
|
|
from enum import Enum
|
|
|
|
|
|
class ServiceEvent(Enum):
|
|
"""
|
|
This Enum contains all possible events that can be dispatched to services
|
|
|
|
Args:
|
|
Enum ([type]): [description]
|
|
"""
|
|
|
|
TRACK_ENDED = auto()
|
|
|
|
|
|
__all__ = ("ServiceEvent",)
|