load("@io_bazel_rules_go//go:def.bzl", "go_library") | |
go_library( | |
name = "helloworld", | |
srcs = ["service.go"], | |
importpath = "go.skia.org/infra/mcp/services/helloworld", | |
visibility = ["//visibility:public"], | |
deps = [ | |
"//mcp/common", | |
"@com_github_mark3labs_mcp_go//mcp", | |
], | |
) |