mirror of
https://github.com/fergalmoran/StegoPrint.git
synced 2025-12-22 09:49:07 +00:00
12 lines
293 B
C#
12 lines
293 B
C#
using Microsoft.Extensions.CommandLineUtils;
|
|
using System;
|
|
|
|
namespace StegoPrint {
|
|
class App : CommandLineApplication {
|
|
public App() {
|
|
Commands.Add(new AddFingerprintCommand());
|
|
Commands.Add(new ExtractFingerprintCommand());
|
|
}
|
|
}
|
|
}
|