1
0
mirror of synced 2024-11-05 11:09:17 +00:00
Tapeti/Tapeti.Transient/ITransientPublisher.cs

9 lines
197 B
C#
Raw Normal View History

using System.Threading.Tasks;
namespace Tapeti.Transient
{
public interface ITransientPublisher
{
Task<TResponse> RequestResponse<TRequest, TResponse>(TRequest request);
}
}