mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-24 22:21:25 +00:00
17 lines
478 B
Python
17 lines
478 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "ini",
|
||
|
srcs = [
|
||
|
"codec.go",
|
||
|
"map_utils.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/spf13/viper/internal/encoding/ini",
|
||
|
importpath = "github.com/spf13/viper/internal/encoding/ini",
|
||
|
visibility = ["//vendor/github.com/spf13/viper:__subpackages__"],
|
||
|
deps = [
|
||
|
"//vendor/github.com/spf13/cast",
|
||
|
"//vendor/gopkg.in/ini.v1:ini_v1",
|
||
|
],
|
||
|
)
|