mirror of
https://github.com/containerd/containerd.git
synced 2026-07-13 11:01:35 +00:00
11 lines
210 B
Go
11 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
|
|
)
|