mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-30 02:31:08 +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); |