mirror of
https://github.com/davidkaya/aryx.git
synced 2026-07-24 21:48:36 +02:00
Rename the product, runtime surfaces, sidecar projects, docs, tests, and packaging outputs from Kopaya to Eryx across the repository. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
11 lines
281 B
C#
11 lines
281 B
C#
using Eryx.AgentHost.Services;
|
|
|
|
if (!args.Contains("--stdio", StringComparer.Ordinal))
|
|
{
|
|
Console.Error.WriteLine("Eryx.AgentHost expects the --stdio flag.");
|
|
return;
|
|
}
|
|
|
|
SidecarProtocolHost host = new();
|
|
await host.RunAsync(Console.In, Console.Out, CancellationToken.None);
|