forked from buildbarn/bb-deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdummy_for_dependencies.go
More file actions
19 lines (18 loc) · 1.01 KB
/
dummy_for_dependencies.go
File metadata and controls
19 lines (18 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Package dummyforgomod only exists to make 'go mod tidy' and Gazelle
// automatically generate all the dependencies needed for the BUILD.bazel
// files into go_dependencies.bzl.
//
// If this file contains code using the dependencies, `go mod tidy` will only
// add the exact transitive dependencies that are needed for building. By
// leaving this file without any code, `go mod tidy` adds all transitive
// dependencies for the needed modules.
package dummyforgomod
import (
_ "github.com/buildbarn/bb-browser/cmd/bb_browser" // bb-browser
_ "github.com/buildbarn/bb-remote-execution/cmd/bb_runner" // bb-runner
_ "github.com/buildbarn/bb-remote-execution/cmd/bb_scheduler" // bb-scheduler
_ "github.com/buildbarn/bb-remote-execution/cmd/bb_worker" // bb-worker
_ "github.com/buildbarn/bb-storage/cmd/bb_storage" // bb-stogare
_ "golang.org/x/lint" // GitHub Workflow
_ "mvdan.cc/gofumpt" // GitHub Workflow
)