165815fdbf
Signed-off-by: Hu Keping <hukeping@huawei.com>
10 lines
210 B
Go
10 lines
210 B
Go
package main
|
|
|
|
// ctr wide constants
|
|
const (
|
|
// ExitStatusOK indicates successful completion
|
|
ExitStatusOK = 0
|
|
|
|
// ExitStatusMissingArg indicates failure due to missing argument(s)
|
|
ExitStatusMissingArg = 1
|
|
)
|