Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/operations/observability/mixins/tools.go
2498 views
1
// Copyright (c) 2021 Gitpod GmbH. All rights reserved.
2
// Licensed under the GNU Affero General Public License (AGPL).
3
// See License.AGPL.txt in the project root for license information.
4
5
//go:build tools
6
// +build tools
7
8
// Package tools tracks dependencies for tools that used in the build process.
9
// See https://github.com/golang/go/wiki/Modules
10
package tools
11
12
import (
13
_ "github.com/google/go-jsonnet/cmd/jsonnet"
14
_ "github.com/google/go-jsonnet/cmd/jsonnetfmt"
15
_ "github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb"
16
)
17
18