forked from allaboutapps/go-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.go
20 lines (16 loc) · 786 Bytes
/
tools.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//go:build tools
package tools
// Tooling dependencies
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
// https://github.com/go-modules-by-example/index/blob/master/010_tools/README.md
// This file may incorporate tools that may be *both* used as CLI and as lib
// Keep in mind that these global tools change the go.mod/go.sum dependency tree
// Other tooling may be installed as *static binary* directly within the Dockerfile
import (
_ "github.com/rubenv/sql-migrate/sql-migrate"
_ "github.com/spf13/cobra/cobra"
_ "github.com/volatiletech/sqlboiler/v4"
_ "github.com/volatiletech/sqlboiler/v4/drivers/sqlboiler-psql"
_ "google.golang.org/grpc/cmd/[email protected]"
_ "google.golang.org/protobuf/cmd/[email protected]"
)