7 lines
75 B
Python
7 lines
75 B
Python
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class EventsEnum(Enum):
|
||
|
|
||
|
on_ready = 'on_ready'
|