From 165815fdbffd4b771be71fbe207ad906d042ecea Mon Sep 17 00:00:00 2001 From: HuKeping Date: Fri, 22 Apr 2016 11:01:24 -0400 Subject: [PATCH] Introduce a ctr wide constant Signed-off-by: Hu Keping --- ctr/const.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ctr/const.go 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 +)