blob: 388d8844d6a68cbdc3d580aeb7cda06d6a53696e [file] [log] [blame]
Tim Windelschmidt6d33a432025-02-04 14:34:25 +01001// Copyright The Monogon Project Authors.
2// SPDX-License-Identifier: Apache-2.0
3
Serge Bazanski46e72ab2022-09-05 15:13:22 +02004//go:build tools
5// +build tools
6
7// This is a synthetic file which depends on the sqlc binary. That in turn
8// makes `go mod tidy` pick it up, which in turns makes it available to Bazel.
9package main
10
11import (
Tim Windelschmidt3fdaeac2023-11-13 23:33:07 +010012 _ "github.com/sqlc-dev/sqlc/pkg/cli"
Serge Bazanski46e72ab2022-09-05 15:13:22 +020013)
14
15func main() {
16}