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

go_library(
    name = "runtime",
    srcs = [
        "bytestream.go",
        "client_auth_info.go",
        "client_operation.go",
        "client_request.go",
        "client_response.go",
        "constants.go",
        "csv.go",
        "discard.go",
        "file.go",
        "headers.go",
        "interfaces.go",
        "json.go",
        "request.go",
        "statuses.go",
        "text.go",
        "values.go",
        "xml.go",
    ],
    importmap = "peridot.resf.org/vendor/github.com/go-openapi/runtime",
    importpath = "github.com/go-openapi/runtime",
    visibility = ["//visibility:public"],
    deps = [
        "//vendor/github.com/go-openapi/errors",
        "//vendor/github.com/go-openapi/strfmt",
        "//vendor/github.com/go-openapi/swag",
    ],
)