load("@io_bazel_rules_go//go:def.bzl", "go_library")

go_library(
    name = "interfaces",
    srcs = ["interfaces.go"],
    importpath = "github.com/buildbuddy-io/buildbuddy/server/interfaces",
    visibility = ["//visibility:public"],
    deps = [
        "//proto:acl_go_proto",
        "//proto:api_key_go_proto",
        "//proto:auditlog_go_proto",
        "//proto:auth_go_proto",
        "//proto:buildbuddy_service_go_proto",
        "//proto:encryption_go_proto",
        "//proto:execution_stats_go_proto",
        "//proto:firecracker_go_proto",
        "//proto:gcp_go_proto",
        "//proto:github_go_proto",
        "//proto:group_go_proto",
        "//proto:health_go_proto",
        "//proto:index_go_proto",
        "//proto:invocation_go_proto",
        "//proto:iprules_go_proto",
        "//proto:prometheus_client_go_proto",
        "//proto:publish_build_event_go_proto",
        "//proto:quota_go_proto",
        "//proto:raft_go_proto",
        "//proto:remote_execution_go_proto",
        "//proto:repo_go_proto",
        "//proto:resource_go_proto",
        "//proto:runner_go_proto",
        "//proto:scheduler_go_proto",
        "//proto:search_go_proto",
        "//proto:secrets_go_proto",
        "//proto:stats_go_proto",
        "//proto:stored_invocation_go_proto",
        "//proto:suggestion_go_proto",
        "//proto:telemetry_go_proto",
        "//proto:usage_go_proto",
        "//proto:workflow_go_proto",
        "//proto:zip_go_proto",
        "//proto/api/v1:api_v1_go_proto",
        "//server/tables",
        "//server/util/clickhouse/schema",
        "//server/util/proto",
        "//server/util/role",
        "@com_github_golang_jwt_jwt//:jwt",
        "@com_github_google_go_github_v59//github",
        "@com_github_hashicorp_serf//serf",
        "@io_gorm_gorm//:gorm",
        "@org_golang_google_grpc//credentials",
    ],
)
