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