diff --git a/src/Cap.Consistency/Producer/IProducerClient.cs b/src/Cap.Consistency/Producer/IProducerClient.cs index 3e9844f..a580899 100644 --- a/src/Cap.Consistency/Producer/IProducerClient.cs +++ b/src/Cap.Consistency/Producer/IProducerClient.cs @@ -1,13 +1,12 @@ using System; using System.Collections.Generic; using System.Text; +using System.Threading.Tasks; namespace Cap.Consistency.Producer { public interface IProducerClient { - - - + Task SendAsync(string topic, string content); } }