mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
47 lines
1.1 KiB
Python
47 lines
1.1 KiB
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "pflag",
|
||
|
srcs = [
|
||
|
"bool.go",
|
||
|
"bool_slice.go",
|
||
|
"bytes.go",
|
||
|
"count.go",
|
||
|
"duration.go",
|
||
|
"duration_slice.go",
|
||
|
"flag.go",
|
||
|
"float32.go",
|
||
|
"float32_slice.go",
|
||
|
"float64.go",
|
||
|
"float64_slice.go",
|
||
|
"golangflag.go",
|
||
|
"int.go",
|
||
|
"int16.go",
|
||
|
"int32.go",
|
||
|
"int32_slice.go",
|
||
|
"int64.go",
|
||
|
"int64_slice.go",
|
||
|
"int8.go",
|
||
|
"int_slice.go",
|
||
|
"ip.go",
|
||
|
"ip_slice.go",
|
||
|
"ipmask.go",
|
||
|
"ipnet.go",
|
||
|
"string.go",
|
||
|
"string_array.go",
|
||
|
"string_slice.go",
|
||
|
"string_to_int.go",
|
||
|
"string_to_int64.go",
|
||
|
"string_to_string.go",
|
||
|
"uint.go",
|
||
|
"uint16.go",
|
||
|
"uint32.go",
|
||
|
"uint64.go",
|
||
|
"uint8.go",
|
||
|
"uint_slice.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/spf13/pflag",
|
||
|
importpath = "github.com/spf13/pflag",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|