mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboExperiments.git
synced 2026-06-15 21:16:20 +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);
|
|
} |