server-master/srcs/Toolkit/Commands/CreateAccountCommand.cs
2026-02-10 18:21:30 +01:00

10 lines
No EOL
338 B
C#

using CommandLine;
namespace Toolkit.Commands;
[Verb("create-accounts", HelpText = "Manage the language to update those")]
public class CreateAccountCommand
{
[Option('e', "env", Required = false, HelpText = "Input paths from where you want to parse the files", Default = "toolkit.env")]
public string EnvFile { get; set; }
}