14 lines
338 B
C#
14 lines
338 B
C#
using IM_API.Domain.Events;
|
|
using MassTransit;
|
|
|
|
namespace IM_API.Application.EventHandlers.FriendAddHandler
|
|
{
|
|
public class FriendAddConversationHandler : IConsumer<FriendAddEvent>
|
|
{
|
|
public Task Consume(ConsumeContext<FriendAddEvent> context)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|