| Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 1 | //go:build tools |
| 2 | // +build tools | ||||
| 3 | |||||
| 4 | // This is a synthetic file which depends on the sqlc binary. That in turn | ||||
| 5 | // makes `go mod tidy` pick it up, which in turns makes it available to Bazel. | ||||
| 6 | package main | ||||
| 7 | |||||
| 8 | import ( | ||||
| Tim Windelschmidt | 3fdaeac | 2023-11-13 23:33:07 +0100 | [diff] [blame] | 9 | _ "github.com/sqlc-dev/sqlc/pkg/cli" |
| Serge Bazanski | 46e72ab | 2022-09-05 15:13:22 +0200 | [diff] [blame] | 10 | ) |
| 11 | |||||
| 12 | func main() { | ||||
| 13 | } | ||||