aboutsummaryrefslogtreecommitdiff
path: root/src/Program.cs
blob: c0d1a20204897937d03726e4348c66445850b700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
        }
    }
}