Initial commit

This commit is contained in:
Fergal Moran
2017-03-23 17:08:57 +00:00
commit 3b0338e663
15 changed files with 951 additions and 0 deletions

11
App.cs Normal file
View File

@@ -0,0 +1,11 @@
using Microsoft.Extensions.CommandLineUtils;
using System;
namespace StegoPrint {
class App : CommandLineApplication {
public App() {
Commands.Add(new AddFingerprintCommand());
Commands.Add(new ExtractFingerprintCommand());
}
}
}