mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-01 02:52:56 +00:00
6 lines
168 B
C#
6 lines
168 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CleanArchitecture.Domain.Rabbitmq;
|
|
|
|
public delegate Task<bool> ConsumeEventHandler(ReadOnlyMemory<byte> content); |