Files
nexus/backend/Services/IOpenClawGatewayClient.cs
AzuTear f5552218bc
CI - Build & Test / Backend (.NET) (push) Successful in 42s
CI - Build & Test / Frontend (Vue/TS) (push) Successful in 2m46s
CI - Build & Test / Security Check (push) Successful in 3s
CI - Build & Test / Deploy Nexus (push) Successful in 56s
feat: ship agent-first mission control v0.2.57
2026-07-31 22:39:47 +02:00

18 lines
517 B
C#

using Nexus.Api.Models;
namespace Nexus.Api.Services;
/// <summary>
/// Bounded compatibility client for session history, which is not yet exposed
/// through the typed OpenClaw control projection used by the dashboard.
/// Agent, model, cron, status and mutation discovery belong to
/// <see cref="IOpenClawControlService"/>.
/// </summary>
public interface IOpenClawGatewayClient
{
Task<List<MessageEntry>> GetSessionHistoryAsync(
string sessionKey,
int limit = 50,
int offset = 0);
}