mirror of
https://github.com/fergalmoran/StegoPrint.git
synced 2025-12-22 17:59:04 +00:00
16 lines
391 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
} |