Skip to content

Instantly share code, notes, and snippets.

View ndy40's full-sized avatar

Ndifreke Ekott ndy40

View GitHub Profile
@ndy40
ndy40 / event_bus.py
Last active January 29, 2025 17:12
EventBus class
import importlib
import inspect
import os
from functools import wraps
from typing import List, Callable, Dict, Type, ClassVar
class EventBus:
listeners: Dict[str, List[Callable]]