Esiur CLI

This commit is contained in:
2026-07-18 00:44:14 +03:00
parent 3e8fb50110
commit ac36a3ddc7
36 changed files with 2396 additions and 304 deletions
@@ -0,0 +1,10 @@
namespace Esiur.CLI.Configuration;
public sealed class CliConfiguration
{
public string? DefaultProfile { get; set; }
public string OutputFormat { get; set; } = "table";
public string Timeout { get; set; } = "30s";
public Dictionary<string, ConnectionProfile> Profiles { get; set; }
= new(StringComparer.OrdinalIgnoreCase);
}