mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-19 01:47:02 +00:00
23 lines
265 B
Go
23 lines
265 B
Go
package validation
|
|
|
|
import "github.com/yannh/kubeconform/pkg/resource"
|
|
|
|
// Status TODO
|
|
type Status int
|
|
|
|
// TODO
|
|
const (
|
|
_ Status = iota
|
|
Error
|
|
Skipped
|
|
Valid
|
|
Invalid
|
|
Empty
|
|
)
|
|
|
|
// Result TODO
|
|
type Result struct {
|
|
resource.Resource
|
|
Err error
|
|
Status Status
|
|
}
|