load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "eagateway", srcs = [ "config.go", "types.go", ], importpath = "edge-infra.dev/pkg/sds/emergencyaccess/eagateway", visibility = ["//visibility:public"], deps = [ "//pkg/sds/emergencyaccess/msgdata", "//pkg/sds/emergencyaccess/remotecli", ], ) go_test( name = "eagateway_test", srcs = ["config_test.go"], embed = [":eagateway"], deps = [ "@com_github_peterbourgon_ff_v3//:ff", "@com_github_stretchr_testify//assert", ], )