mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
19 lines
473 B
Python
19 lines
473 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "go-jmespath",
|
||
|
srcs = [
|
||
|
"api.go",
|
||
|
"astnodetype_string.go",
|
||
|
"functions.go",
|
||
|
"interpreter.go",
|
||
|
"lexer.go",
|
||
|
"parser.go",
|
||
|
"toktype_string.go",
|
||
|
"util.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/jmespath/go-jmespath",
|
||
|
importpath = "github.com/jmespath/go-jmespath",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|