Files
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

32 lines
738 B
C#

namespace Nexus.Api.Services;
public sealed record DocFileInfo(
string Name,
string Path,
string Category,
string Type,
long Size,
DateTime ModifiedAt,
string SourceAgentId,
string WorkspacePath);
public sealed record DocFileContent(
string Name,
string Path,
string Content,
long Size,
DateTime ModifiedAt,
string SourceAgentId,
string WorkspacePath);
public interface IDocService
{
Task<IReadOnlyList<DocFileInfo>> GetAllAsync(
string agentId = "iris",
CancellationToken cancellationToken = default);
Task<DocFileContent?> GetFileAsync(
string path,
string agentId = "iris",
CancellationToken cancellationToken = default);
}