Files
karma/tools.go
Łukasz Mierzwa a57e3c7c5b fix(backend): fix the syntax of tools.go
Comment was incorrectly formatted, resulting in tools.go being ignored.
Fix the comment and run 'go mod tidy' to fix Go module files
2019-03-07 16:09:00 +00:00

15 lines
426 B
Go

// +build tools
// https://github.com/golang/go/issues/25922#issuecomment-412992431
// this file is to track dev dependencies for go modules that are needed
// to build this project, but are only CLI tools and don't get imported
package tools
import (
_ "github.com/elazarl/go-bindata-assetfs"
_ "github.com/go-bindata/go-bindata"
_ "github.com/golangci/golangci-lint/pkg/commands"
_ "github.com/terinjokes/bakelite"
)