Files
aperture/tools/tools.go
2025-08-20 07:03:35 +02:00

15 lines
486 B
Go

//go:build tools
// +build tools
package aperture
// The other imports represent our build tools. Instead of defining a commit we
// want to use for those golang-based tools, we use the go mod versioning system
// to unify the way we manage dependencies. So we define our build tool
// dependencies here and pin the version in go.mod.
import (
_ "github.com/golangci/golangci-lint/v2/cmd/golangci-lint"
_ "github.com/ory/go-acc"
_ "github.com/rinchsan/gosimports/cmd/gosimports"
)