interface Observer<T> {
    void notify(T event);
}
