All checks were successful
Run the JSON parser tests / test (push) Has been skipped
18 lines
207 B
C#
18 lines
207 B
C#
namespace Jtr.Tools.CLI;
|
|
|
|
public enum OutputOptions
|
|
{
|
|
// Standard output
|
|
stdout,
|
|
std,
|
|
s,
|
|
|
|
// Clipboard
|
|
clipboard,
|
|
clip,
|
|
c,
|
|
|
|
// File
|
|
file,
|
|
f,
|
|
} |