diff --git a/ctr/const.go b/ctr/const.go new file mode 100644 index 000000000..3af854b30 --- /dev/null +++ b/ctr/const.go @@ -0,0 +1,10 @@ +package main + +// ctr wide constants +const ( + // ExitStatusOK indicates successful completion + ExitStatusOK = 0 + + // ExitStatusMissingArg indicates failure due to missing argument(s) + ExitStatusMissingArg = 1 +)