6 lines
183 B
C#
6 lines
183 B
C#
namespace Jibo.Runtime.Abstractions;
|
|
|
|
public interface ISttStrategySelector
|
|
{
|
|
Task<ISttStrategy> SelectAsync(TurnContext turn, CancellationToken cancellationToken = default);
|
|
} |