Introduce a ctr wide constant
Signed-off-by: Hu Keping <hukeping@huawei.com>
This commit is contained in:
parent
b31b8a611e
commit
165815fdbf
1 changed files with 10 additions and 0 deletions
10
ctr/const.go
Normal file
10
ctr/const.go
Normal 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
|
||||
)
|
Loading…
Reference in a new issue