mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-29 18:21:08 +00:00
9 lines
180 B
C#
9 lines
180 B
C#
using System.Threading.Tasks;
|
|
using RabbitMQ.Client;
|
|
|
|
namespace CleanArchitecture.Domain.Rabbitmq.Actions;
|
|
|
|
public interface IRabbitMqAction
|
|
{
|
|
Task Perform(IChannel channel);
|
|
} |