1
0
mirror of https://github.com/oliverbooth/fdup.git synced 2024-11-09 23:05:42 +00:00
fdup/FindDuplicates/Program.cs

7 lines
204 B
C#

using FindDuplicates;
using Spectre.Console.Cli;
var app = new CommandApp<ListCommand>();
app.Configure(cfg => cfg.AddCommand<AlgListCommand>("alglist"));
await app.RunAsync(args).ConfigureAwait(false);