mirror of
https://github.com/holos-run/holos.git
synced 2026-04-07 10:04:57 +00:00
This patch removes all of the experimental prototype code that's no longer relevant to the holos command line tool. Also all versions before v1alpha5
13 lines
255 B
Go
13 lines
255 B
Go
//go:build tools
|
|
|
|
package tools
|
|
|
|
// Refer to "How can I track tool dependencies for a module?"
|
|
// https://go.dev/wiki/Modules
|
|
|
|
import (
|
|
_ "cuelang.org/go/cmd/cue"
|
|
_ "github.com/princjef/gomarkdoc/cmd/gomarkdoc"
|
|
_ "sigs.k8s.io/kustomize/kustomize/v5"
|
|
)
|