1load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 3go_library( 4 name = "server", 5 srcs = ["server.go"], 6 importpath = "edge-infra.dev/pkg/f8n/devinfra/github-actions-exporter/server", 7 visibility = ["//visibility:public"], 8 deps = [ 9 "@com_github_gin_gonic_gin//:gin", 10 "@com_github_google_go_github_v47//github", 11 ], 12)