load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "edgecli", srcs = ["config.go"], importpath = "edge-infra.dev/pkg/edge/edgecli", visibility = ["//visibility:public"], deps = ["@in_gopkg_yaml_v2//:yaml_v2"], ) go_test( name = "edgecli_test", srcs = ["config_test.go"], embed = [":edgecli"], deps = ["@com_github_stretchr_testify//assert"], )