mirror of
https://github.com/bitwarden/server
synced 2026-02-20 19:33:32 +00:00
* Refactoring structure of the CLI to be more maintainable long-term * Remove obvious comments & put back XML comments
23 lines
482 B
C#
23 lines
482 B
C#
using Bit.SeederUtility.Commands;
|
|
using CommandDotNet;
|
|
|
|
namespace Bit.SeederUtility;
|
|
|
|
public class Program
|
|
{
|
|
private static int Main(string[] args)
|
|
{
|
|
return new AppRunner<Program>()
|
|
.Run(args);
|
|
}
|
|
|
|
[Subcommand]
|
|
public OrganizationCommand Organization { get; set; } = null!;
|
|
|
|
[Subcommand]
|
|
public VaultOrganizationCommand VaultOrganization { get; set; } = null!;
|
|
|
|
[Subcommand]
|
|
public SeedCommand Seed { get; set; } = null!;
|
|
}
|