load("@io_bazel_rules_go//go:def.bzl", "go_library") go_library( name = "fake", srcs = [ "fake_server.go", "fake_types.go", ], importpath = "edge-infra.dev/pkg/edge/api/fake", visibility = ["//visibility:public"], deps = [ "//pkg/edge/api/fake/mocks", "//pkg/edge/api/graph/model", "//pkg/edge/api/utils", "@com_github_99designs_gqlgen//graphql", "@com_github_shurcool_graphql//:graphql", ], )