fix: files in their projects

This commit is contained in:
2024-03-11 11:57:06 +07:00
parent 6af885a4f8
commit 1acb74f74f
9 changed files with 140 additions and 54 deletions

View File

@@ -0,0 +1,17 @@
using InServiceQue.Services;
namespace InServiceQue.Sample;
public class OtherMessageHandler: IQueueHandler<OtherMessageTask>
{
public bool Handle(string payload)
{
throw new NotImplementedException();
}
public async Task<bool> HandleAsync(string payload)
{
Console.WriteLine($"Pizda {payload}");
return await Task.FromResult<bool>(true);
}
}