11 lines
310 B
C#
11 lines
310 B
C#
using Nexus.Api.Models;
|
|
|
|
namespace Nexus.Api.Services;
|
|
|
|
public interface IOpenClawEventProjectionService
|
|
{
|
|
OpenClawEventBatch Project(string? lastEventId, int limit = 500);
|
|
OpenClawStreamEventDto CreateConnectionEvent(string? cursor);
|
|
OpenClawStreamEventDto CreateHeartbeatEvent(string? cursor);
|
|
}
|