Files
flippr-game/venv/lib/python3.8/site-packages/observable/__init__.py
Jonas Zeunert 7414734dad thiiiiings
2020-02-13 19:05:55 +01:00

10 lines
185 B
Python

# -*- coding: utf-8 -*-
"""
Event system for python
"""
from .core import Observable, EventNotFound, HandlerNotFound
__all__ = ["Observable", "EventNotFound", "HandlerNotFound"]