mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
16 lines
426 B
Python
Generated
16 lines
426 B
Python
Generated
load("@rules_go//go:def.bzl", "go_binary", "go_library")
|
|
|
|
go_library(
|
|
name = "go-gen-dbscheme_lib",
|
|
srcs = ["go-gen-dbscheme.go"],
|
|
importpath = "github.com/github/codeql-go/extractor/cli/go-gen-dbscheme",
|
|
visibility = ["//visibility:private"],
|
|
deps = ["//go/extractor/dbscheme"],
|
|
)
|
|
|
|
go_binary(
|
|
name = "go-gen-dbscheme",
|
|
embed = [":go-gen-dbscheme_lib"],
|
|
visibility = ["//visibility:public"],
|
|
)
|