diff options
author | Teddy Wing | 2023-05-18 14:57:28 +0200 |
---|---|---|
committer | Teddy Wing | 2023-05-18 14:57:28 +0200 |
commit | b87512b19fd60cee224b31c59eafe1e29f2580fd (patch) | |
tree | be76923ca5a1a55fcc1ef779d3edb4419bf0bce7 | |
parent | 4859ae4083e5035cc75527423fe5be69a1201b64 (diff) | |
download | gocapturedrefrace-b87512b19fd60cee224b31c59eafe1e29f2580fd.tar.bz2 |
testdata: Add missing license headers
-rw-r--r-- | testdata/function_argument.go | 19 | ||||
-rw-r--r-- | testdata/shadow.go | 19 |
2 files changed, 38 insertions, 0 deletions
diff --git a/testdata/function_argument.go b/testdata/function_argument.go index db21eae..a72e8c8 100644 --- a/testdata/function_argument.go +++ b/testdata/function_argument.go @@ -1,3 +1,22 @@ +// Copyright (c) 2023 Teddy Wing +// +// This file is part of Gocapturedrefrace. +// +// Gocapturedrefrace is free software: you can redistribute it and/or +// modify it under the terms of the GNU General Public License as +// published by the Free Software Foundation, either version 3 of the +// License, or (at your option) any later version. +// +// Gocapturedrefrace is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with Gocapturedrefrace. If not, see +// <https://www.gnu.org/licenses/>. + + package main func functionArgument(callback func()) { diff --git a/testdata/shadow.go b/testdata/shadow.go index a8c2b5f..c6cf11e 100644 --- a/testdata/shadow.go +++ b/testdata/shadow.go @@ -1,3 +1,22 @@ +// Copyright (c) 2023 Teddy Wing +// +// This file is part of Gocapturedrefrace. +// +// Gocapturedrefrace is free software: you can redistribute it and/or +// modify it under the terms of the GNU General Public License as +// published by the Free Software Foundation, either version 3 of the +// License, or (at your option) any later version. +// +// Gocapturedrefrace is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with Gocapturedrefrace. If not, see +// <https://www.gnu.org/licenses/>. + + package main import ( |