blob: 96805c69061a4bc1c75eba7f43738db7c52eb110 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package(licenses = ["notice"]) # BSD
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "hash",
srcs = ["hash.go"],
importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/network/hash",
visibility = ["//visibility:public"],
deps = ["//pkg/tcpip/header"],
)
|