1
0
mirror of synced 2024-07-01 00:07:39 +00:00
Tapeti/IPublisher.cs

10 lines
137 B
C#
Raw Normal View History

2016-11-17 16:33:27 +00:00
using System.Threading.Tasks;
namespace Tapeti
{
public interface IPublisher
{
2016-11-17 16:33:27 +00:00
Task Publish(object message);
}
}