From 1c52b4145cbb0d79e1288ffd19d8eabb9eacbfae Mon Sep 17 00:00:00 2001 From: Syping Date: Sun, 26 Oct 2025 23:41:08 +0100 Subject: [PATCH] reintroduce create command --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index dff82ed..1d618a6 100644 --- a/Program.cs +++ b/Program.cs @@ -6,7 +6,7 @@ internal static class Program { private static void Main(String[] args) { RootCommand rootCommand = new("ragephoto-cli Application") { - GetCommand, SetCommand + CreateCommand, GetCommand, SetCommand }; rootCommand.Parse(args).Invoke(); }