Introduce a ctr wide constant

Signed-off-by: Hu Keping <hukeping@huawei.com>
This commit is contained in:
HuKeping 2016-04-22 11:01:24 -04:00
parent b31b8a611e
commit 165815fdbf

10
ctr/const.go Normal file
View file

@ -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
)