1
0
mirror of https://github.com/bitwarden/server synced 2026-02-20 19:33:32 +00:00
Files
server/util/SeederUtility/Program.cs
Mick Letofsky 507c3a105c Refactoring structure of the CLI to be more maintainable long-term (#7042)
* Refactoring structure of the CLI to be more maintainable long-term
* Remove obvious comments & put back XML comments
2026-02-19 18:40:48 +01:00

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!;
}