From 2ecbe281b0351e630c7730b44c1f4a9c3b3062a5 Mon Sep 17 00:00:00 2001 From: Daniel Smith Date: Sun, 26 Aug 2018 21:22:32 -0400 Subject: Initial commit --- src/Program.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/Program.cs (limited to 'src/Program.cs') diff --git a/src/Program.cs b/src/Program.cs new file mode 100644 index 0000000..c0d1a20 --- /dev/null +++ b/src/Program.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using iPhotoExtractor.Commands; +using Microsoft.Extensions.CommandLineUtils; + +namespace iPhotoExtractor +{ + class Program + { + static void Main(string[] args) + { + var app = new CommandLineApplication(); + RootCommand.Configure(app); + app.Execute(args); + } + } +} -- cgit v1.2.3