Selector/Selector.CLI/Program.cs
2022-02-18 22:13:16 +00:00

17 lines
408 B
C#

using System.CommandLine;
namespace Selector.CLI
{
public static class Program
{
public static void Main(string[] args)
{
var cmd = new HostRootCommand();
cmd.AddCommand(new ScrobbleCommand("scrobble", "Manipulate scrobbles"));
cmd.AddCommand(new MigrateCommand("migrate", "Migrate database"));
cmd.Invoke(args);
}
}
}