github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/mergeCode/containerd/ctr/const.go (about)

     1  package main
     2  
     3  // ctr wide constants
     4  const (
     5  	// ExitStatusOK indicates successful completion
     6  	ExitStatusOK = 0
     7  
     8  	// ExitStatusMissingArg indicates failure due to missing argument(s)
     9  	ExitStatusMissingArg = 1
    10  	// ExitStatusUnsupported indicates failure due to unsupported subcommand(s)
    11  	ExitStatusUnsupported = 2
    12  )