feat: starting to build a application itself

add "capture" and "camera-tuning" commands for cli
This commit is contained in:
2026-04-07 13:28:20 +03:00
parent d0ecc31da2
commit 8cf1c89863
14 changed files with 2587 additions and 55 deletions
+16
View File
@@ -0,0 +1,16 @@
using System.CommandLine;
namespace GSS2.Commands;
static class Helper
{
public static void TranslateDefaultOptionDescriptions(RootCommand rootCommand)
{
rootCommand.Options
.FirstOrDefault(o => o.Name == "--help")?
.Description = "Показать справку и информацию об использовании";
rootCommand.Options
.FirstOrDefault(o => o.Name == "--version")?
.Description = "Показать информацию о версии";
}
}