namespace JiShe.CollectBus.Protocol.Interfaces
{
public interface IAnalysisStrategy<TInput, TResult>
Task<TResult> ExecuteAsync(TInput input);
}