1
0
mirror of synced 2024-06-28 14:57:40 +00:00
Tapeti/IPublisher.cs

10 lines
137 B
C#

using System.Threading.Tasks;
namespace Tapeti
{
public interface IPublisher
{
Task Publish(object message);
}
}