hello-shop/libraries/HelloShop.EventBus.Abstractions/IEventBus.cs
2025-03-20 22:13:45 +08:00

11 lines
319 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
namespace HelloShop.EventBus.Abstractions
{
public interface IEventBus
{
Task PublishAsync(DistributedEvent @event, CancellationToken cancellationToken = default);
}
}