mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
9ab08e6998
* first version of the watchtower api * first version * delete watchtower * move to message loop * roughtime * one time * fix test * Fixed test * Fixed proposer server * Gaz * gaz * Stuck * Tests passing * Fixed all the tests
23 lines
681 B
Python
23 lines
681 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"gateway.go",
|
|
"handlers.go",
|
|
"log.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/gateway",
|
|
visibility = [
|
|
"//beacon-chain/gateway/server:__pkg__",
|
|
"//beacon-chain/node:__pkg__",
|
|
],
|
|
deps = [
|
|
"//shared:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@grpc_ecosystem_grpc_gateway//runtime:go_default_library",
|
|
"@org_golang_google_grpc//:go_default_library",
|
|
"@org_golang_google_grpc//connectivity:go_default_library",
|
|
],
|
|
)
|