11 lines
237 B
Go
11 lines
237 B
Go
|
//go:build tools
|
||
|
|
||
|
package tools
|
||
|
|
||
|
import (
|
||
|
_ "github.com/onsi/ginkgo/ginkgo"
|
||
|
)
|
||
|
|
||
|
// This file imports packages that are used when running go generate, or used
|
||
|
// during the development process but not otherwise depended on by built code.
|