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