This repository has been archived on 2025-09-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Password-Manager-Legacy/CLI/Program.cs

35 lines
445 B
C#

using Common;
namespace CLI;
class Program
{
static string BINARY_NAME = "pass";
static int Main(string[] args)
{
//ConfigFileManager.ExceptionOccured += (e) => ErrorOccured(e);
//ConfigFileManager.Init();
if (args.Length == 0)
{
ListPasswords();
return 0;
}
else
{
switch (args[0])
{
case "help":
HelpMessage();
break;
default:
HelpMessage();
break;
}
}
return 0;
}
}
}