mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-28 16:06:24 +00:00
17 lines
521 B
Python
17 lines
521 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "javaproperties",
|
|
srcs = [
|
|
"codec.go",
|
|
"map_utils.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/spf13/viper/internal/encoding/javaproperties",
|
|
importpath = "github.com/spf13/viper/internal/encoding/javaproperties",
|
|
visibility = ["//vendor/github.com/spf13/viper:__subpackages__"],
|
|
deps = [
|
|
"//vendor/github.com/magiconair/properties",
|
|
"//vendor/github.com/spf13/cast",
|
|
],
|
|
)
|