mirror of
https://onedev.fprog.nl/DiscordClient
synced 2025-12-29 10:08:37 +01:00
17 lines
312 B
C#
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
|
|
);
|