From 7ca911a5c60501d9df498be0a2d2ee10ae4747fb Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Mon, 29 Jun 2020 19:36:45 -0700 Subject: [PATCH] internal/deepprint: add missing copyright headers --- internal/deepprint/deepprint.go | 4 ++++ internal/deepprint/deepprint_test.go | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/internal/deepprint/deepprint.go b/internal/deepprint/deepprint.go index 5ff94bafb..5207bc680 100644 --- a/internal/deepprint/deepprint.go +++ b/internal/deepprint/deepprint.go @@ -1,3 +1,7 @@ +// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + // Package deepprint walks a Go value recursively, in a predictable // order, without looping, and prints each value out to a given // Writer, which is assumed to be a hash.Hash, as this package doesn't diff --git a/internal/deepprint/deepprint_test.go b/internal/deepprint/deepprint_test.go index b9c9bcf8b..9c3f8dc6a 100644 --- a/internal/deepprint/deepprint_test.go +++ b/internal/deepprint/deepprint_test.go @@ -1,3 +1,7 @@ +// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + package deepprint import (