package com.bcxin.Infrastructures.components;

import com.bcxin.Infrastructures.events.EventAbstract;

public interface EventPublisher {
    void publish(EventAbstract event);
}
