1
0
mirror of synced 2024-07-05 17:50:35 +00:00
Tapeti/Tapeti/ISubscriber.cs

10 lines
123 B
C#

using System.Threading.Tasks;
namespace Tapeti
{
public interface ISubscriber
{
Task Resume();
}
}