mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
Loading of the schema and dbscheme has been moved to a separate `loaders` package for better separation of concerns.
12 lines
264 B
Python
12 lines
264 B
Python
load("@swift_codegen_deps//:requirements.bzl", "requirement")
|
|
|
|
py_library(
|
|
name = "lib",
|
|
srcs = glob(["*.py"]),
|
|
visibility = ["//swift/codegen:__subpackages__"],
|
|
deps = [
|
|
requirement("pystache"),
|
|
requirement("inflection"),
|
|
],
|
|
)
|