Files
JiboExperiments/OpenJibo/src/Jibo.Runtime.Abstractions/IRobotEventMapper.cs

6 lines
194 B
C#
Raw Normal View History

2026-03-23 07:51:32 -05:00
namespace Jibo.Runtime.Abstractions;
public interface IRobotEventMapper
{
Task<TurnContext> MapToTurnContextAsync(RobotEvent robotEvent, CancellationToken cancellationToken = default);
}