mirror of
https://github.com/Syping/ragephoto-cli.git
synced 2025-11-09 13:15:17 +01:00
12 lines
341 B
C#
12 lines
341 B
C#
using System.CommandLine;
|
|
namespace RagePhoto.Cli;
|
|
|
|
internal static class Program {
|
|
|
|
private static void Main(String[] args) {
|
|
RootCommand rootCommand = new("ragephoto-cli Application") {
|
|
Commands.CreateCommand, Commands.GetCommand, Commands.SetCommand
|
|
};
|
|
rootCommand.Parse(args).Invoke();
|
|
}
|
|
}
|