From dbb9526b247f1d197ec9a524e34f6ca4c25cdd4a Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sun, 22 Nov 2020 22:15:51 +0100 Subject: commands: add a command to export bugs as raw operations (NDJSON) --- commands/root.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'commands/root.go') diff --git a/commands/root.go b/commands/root.go index e966751c..3cda27b5 100644 --- a/commands/root.go +++ b/commands/root.go @@ -79,6 +79,20 @@ the same git remote you are already using to collaborate with other people. cmd.AddCommand(newVersionCommand(env)) cmd.AddCommand(newWipeCommand(env)) + // Added with export NDJSON + cmd.AddCommand(newAddCommand(env)) + cmd.AddCommand(newCommentCommand(env)) + cmd.AddCommand(newDeselectCommand(env)) + cmd.AddCommand(newExportCommand(env)) + cmd.AddCommand(newLsCommand(env)) + cmd.AddCommand(newLsIdCommand(env)) + cmd.AddCommand(newLsLabelCommand(env)) + cmd.AddCommand(newRmCommand(env)) + cmd.AddCommand(newSelectCommand(env)) + cmd.AddCommand(newShowCommand(env)) + cmd.AddCommand(newStatusCommand(env)) + cmd.AddCommand(newTitleCommand(env)) + return cmd } -- cgit