21 lines
564 B
Go
21 lines
564 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
// Copyright (c) 2024 Joshua Rich <joshua.rich@gmail.com>
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
// Package tools imports things required by build scripts and test packages of
|
|
// submodules, to force `go mod` to see them as dependencies.
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/goreleaser/nfpm/v2/cmd/nfpm"
|
|
_ "github.com/magefile/mage"
|
|
_ "github.com/matryer/moq"
|
|
_ "github.com/yassinebenaid/godump"
|
|
_ "golang.org/x/text/cmd/gotext"
|
|
_ "golang.org/x/tools/cmd/stringer"
|
|
)
|