Files
StegoPrint/Program.cs
2017-03-23 19:03:46 +00:00

16 lines
391 B
C#

using Microsoft.Extensions.CommandLineUtils;
using System;
using System.Collections.Generic;
namespace StegoPrint {
class Program {
static int Main(string[] args) {
try {
return new App().Execute(args);
} catch (Exception ex) {
Console.Write(ex);
return 1;
}
}
}
}