DiscordClient/DiscordDelete/Program.cs

17 lines
312 B
C#
Raw Normal View History

2024-06-16 00:12:33 +02:00
using CommandLine;
using DiscordDelete;
CommandLine
.Parser.Default.ParseArguments<DeleteOptions, ScanOptions>(args)
.MapResult(
(DeleteOptions opt) =>
{
return 0;
},
(ScanOptions opt) =>
{
return 0;
},
errs => 1
);