summaryrefslogtreecommitdiff
path: root/vendor/github.com/testcontainers/testcontainers-go/validator.go
blob: a888586e8313fe0b38fe385b1f6dca004f3a598c (plain)
1
2
3
4
5
6
7
package testcontainers

// Validator is an interface that can be implemented by types that need to validate their state.
type Validator interface {
	// Validate validates the state of the type.
	Validate() error
}