1
0
mirror of https://github.com/oliverbooth/fdup.git synced 2024-11-10 02:25:41 +00:00
fdup/FindDuplicates/Program.cs

7 lines
204 B
C#
Raw Normal View History

2024-04-16 20:33:16 +01:00
using FindDuplicates;
2024-04-16 20:15:07 +01:00
using Spectre.Console.Cli;
var app = new CommandApp<ListCommand>();
app.Configure(cfg => cfg.AddCommand<AlgListCommand>("alglist"));
2024-04-16 20:15:07 +01:00
await app.RunAsync(args).ConfigureAwait(false);