mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 18:06:55 +00:00
12 lines
195 B
Go
12 lines
195 B
Go
package step
|
|
|
|
import (
|
|
"github.com/kyverno/kyverno/test/e2e/framework/client"
|
|
"github.com/onsi/ginkgo"
|
|
)
|
|
|
|
func By(message string) Step {
|
|
return func(client.Client) {
|
|
ginkgo.By(message)
|
|
}
|
|
}
|