Source code for bot_api.events.event_abc
from abc import ABC
[docs]
class EventABC(ABC):
"""
Abstract base class for all event types.
Provides a shared type for identifying all events.
"""
pass
from abc import ABC
[docs]
class EventABC(ABC):
"""
Abstract base class for all event types.
Provides a shared type for identifying all events.
"""
pass