-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
46 lines (41 loc) · 1.75 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
using MyWorkflow.Utils;
namespace MyWorkflow
{
class Program
{
static void Main(string[] args)
{
if (args.Length == 0)
{
ShowHelp();
return;
}
string command = args[0].ToLower();
ICommand commandHandler = CommandFactory.CreateCommand(command);
if (commandHandler == null)
{
Console.WriteLine("Comando não reconhecido. Use '-h' ou '--help' para ver os comandos disponíveis.");
return;
}
commandHandler.Execute(args);
}
static void ShowHelp()
{
Console.WriteLine("Uso: myworkflow [modulo] [opções]");
Console.WriteLine();
Console.WriteLine("Comandos disponíveis:");
Console.WriteLine(" -h, --help Mostra a ajuda");
Console.WriteLine(" docker Comandos relacionados ao Docker");
Console.WriteLine(" linux Comandos relacionados ao Linux");
Console.WriteLine(" psql Comandos relacionados ao Psql");
Console.WriteLine(" pmc Comandos relacionados ao (pmc)Package Manager Console");
Console.WriteLine(" git Comandos relacionados ao Git");
Console.WriteLine(" vs Comandos relacionados ao Visual Studio");
Console.WriteLine(" mongoshell Comandos relacionados ao mongoshell");
Console.WriteLine(" cp Comandos relacionados ao Commits Pattern");
Console.WriteLine();
Console.WriteLine("Para mais informações sobre um comando, use: myworkflow [modulo] --help");
}
}
}