load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "rags", srcs = [ "doc.go", "rag.go", "rag_set.go", "value.go", ], importpath = "edge-infra.dev/pkg/lib/cli/rags", visibility = ["//visibility:public"], deps = [ "@org_golang_x_text//cases", "@org_golang_x_text//language", ], ) go_test( name = "rags_test", srcs = [ "example_test.go", "example_value_test.go", "rag_set_test.go", "rag_test.go", "value_test.go", ], embed = [":rags"], deps = [ "@com_github_stretchr_testify//assert", "@com_github_stretchr_testify//require", ], )