mirror of
https://github.com/kubernetes-sigs/kind.git
synced 2025-11-30 23:16:04 +07:00
14 lines
263 B
Go
14 lines
263 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
/*
|
|
Package site is used to track binary dependencies with go modules
|
|
https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
|
|
Namely: hugo
|
|
*/
|
|
package site
|
|
|
|
import (
|
|
_ "github.com/gohugoio/hugo"
|
|
)
|