| Tim Windelschmidt | 6d33a43 | 2025-02-04 14:34:25 +0100 | [diff] [blame^] | 1 | // Copyright The Monogon Project Authors. |
| 2 | // SPDX-License-Identifier: Apache-2.0 |
| 3 | |
| Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 4 | //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. |
| 9 | package main |
| 10 | |
| 11 | import ( |
| Tim Windelschmidt | 3fdaeac | 2023-11-13 23:33:07 +0100 | [diff] [blame] | 12 | _ "github.com/sqlc-dev/sqlc/pkg/cli" |
| Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 13 | ) |
| 14 | |
| 15 | func main() { |
| 16 | } |