mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboExperiments.git
synced 2026-06-16 09:16:35 +00:00
6 lines
194 B
C#
6 lines
194 B
C#
|
|
namespace Jibo.Runtime.Abstractions;
|
|||
|
|
|
|||
|
|
public interface IRobotEventMapper
|
|||
|
|
{
|
|||
|
|
Task<TurnContext> MapToTurnContextAsync(RobotEvent robotEvent, CancellationToken cancellationToken = default);
|
|||
|
|
}
|