DiscordClient/DiscordDelete/Program.cs
2024-06-16 00:12:33 +02:00

17 lines
312 B
C#

using CommandLine;
using DiscordDelete;
CommandLine
.Parser.Default.ParseArguments<DeleteOptions, ScanOptions>(args)
.MapResult(
(DeleteOptions opt) =>
{
return 0;
},
(ScanOptions opt) =>
{
return 0;
},
errs => 1
);