using HopFrame.Web.Plugins.Events; namespace HopFrame.Web.Plugins; public interface IPluginOrchestrator { public Task DispatchEvent(TEvent @event, CancellationToken ct = new()) where TEvent : HopFrameEventArgs; }