pipelines/backend/api/go_http_client/pipeline_client/BUILD.bazel

15 lines
577 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["pipeline_client.go"],
importpath = "github.com/kubeflow/pipelines/backend/api/go_http_client/pipeline_client",
visibility = ["//visibility:public"],
deps = [
"//backend/api/go_http_client/pipeline_client/pipeline_service:go_default_library",
"@com_github_go_openapi_runtime//:go_default_library",
"@com_github_go_openapi_runtime//client:go_default_library",
"@com_github_go_openapi_strfmt//:go_default_library",
],
)