19 lines
428 B
Go
19 lines
428 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
|
|
|
|
import (
|
|
_ "github.com/fyne-io/fyne-cross"
|
|
_ "github.com/goreleaser/nfpm/v2/cmd/nfpm"
|
|
_ "github.com/magefile/mage"
|
|
_ "github.com/matryer/moq@latest"
|
|
_ "golang.org/x/text/cmd/gotext"
|
|
_ "golang.org/x/tools/cmd/stringer"
|
|
)
|