From bbc77b2138c1da55fe8f502c28aecd437b2bbfae Mon Sep 17 00:00:00 2001 From: Brian Hendriks Date: Fri, 5 Jan 2024 14:51:45 -0800 Subject: [PATCH] headers --- go/utils/structwalk/walk.go | 14 ++++++++++++++ go/utils/structwalk/walk_test.go | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/go/utils/structwalk/walk.go b/go/utils/structwalk/walk.go index 54752db1f3..b1990ff27d 100644 --- a/go/utils/structwalk/walk.go +++ b/go/utils/structwalk/walk.go @@ -1,3 +1,17 @@ +// Copyright 2024 Dolthub, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + package structwalk import ( diff --git a/go/utils/structwalk/walk_test.go b/go/utils/structwalk/walk_test.go index 343ec20c03..af31a77198 100644 --- a/go/utils/structwalk/walk_test.go +++ b/go/utils/structwalk/walk_test.go @@ -1,3 +1,17 @@ +// Copyright 2024 Dolthub, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + package structwalk import (