Skip to content

Commit

Permalink
fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
grundprinzip committed Jul 2, 2024
1 parent 8bf6cb9 commit c369612
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions client/sparkerrors/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
load("@rules_go//go:def.bzl", "go_library", "go_test")

go_library(
name = "sparkerrors",
srcs = ["errors.go"],
importpath = "github.com/apache/spark-connect-go/v1/client/sparkerrors",
visibility = ["//visibility:public"],
)

go_test(
name = "sparkerrors_test",
srcs = ["errors_test.go"],
embed = [":sparkerrors"],
deps = ["@com_github_stretchr_testify//assert"],
)

0 comments on commit c369612

Please sign in to comment.