mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-18 07:26:34 +00:00

- Updates fips-go to be the latest on cfsetup.yaml - Updates sumtype's x/tools to be latest to avoid Internal: nil pkg errors with fips.
20 lines
300 B
Go
20 lines
300 B
Go
package leafnodes
|
|
|
|
import (
|
|
"github.com/onsi/ginkgo/types"
|
|
)
|
|
|
|
type BasicNode interface {
|
|
Type() types.SpecComponentType
|
|
Run() (types.SpecState, types.SpecFailure)
|
|
CodeLocation() types.CodeLocation
|
|
}
|
|
|
|
type SubjectNode interface {
|
|
BasicNode
|
|
|
|
Text() string
|
|
Flag() types.FlagType
|
|
Samples() int
|
|
}
|