mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
18 lines
479 B
Python
18 lines
479 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "jsonschema",
|
||
|
srcs = [
|
||
|
"base.go",
|
||
|
"display.go",
|
||
|
"models.go",
|
||
|
"operations.go",
|
||
|
"reader.go",
|
||
|
"writer.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/googleapis/gnostic/jsonschema",
|
||
|
importpath = "github.com/googleapis/gnostic/jsonschema",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = ["//vendor/gopkg.in/yaml.v3:yaml_v3"],
|
||
|
)
|