remove broken create command

This commit is contained in:
Syping 2025-10-26 20:15:09 +01:00
parent ec2a90a449
commit 1ce9599275

View file

@ -6,7 +6,7 @@ internal static class Program {
private static void Main(String[] args) { private static void Main(String[] args) {
RootCommand rootCommand = new("ragephoto-cli Application") { RootCommand rootCommand = new("ragephoto-cli Application") {
CreateCommand, GetCommand, SetCommand GetCommand, SetCommand
}; };
rootCommand.Parse(args).Invoke(); rootCommand.Parse(args).Invoke();
} }
@ -21,6 +21,7 @@ internal static class Program {
_ => throw new ArgumentException("Invalid format", nameof(format)) _ => throw new ArgumentException("Invalid format", nameof(format))
}; };
/* NOTE: Photo corrupts here... */
if (jpegFile == String.Empty) { if (jpegFile == String.Empty) {
photo.Jpeg = Properties.Resources.EmptyJpeg; photo.Jpeg = Properties.Resources.EmptyJpeg;
} }