diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8d7299..dc1e812 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022 Comcast Cable Communications Management, LLC +# SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC # SPDX-License-Identifier: Apache-2.0 --- name: CI diff --git a/.github/workflows/dependabot-approver.yml b/.github/workflows/dependabot-approver.yml index 7781d8f..0bcc5e4 100644 --- a/.github/workflows/dependabot-approver.yml +++ b/.github/workflows/dependabot-approver.yml @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +# SPDX-License-Identifier: Apache-2.0 --- name: 'Dependabot auto approval' diff --git a/.github/workflows/proj-xmidt-team.yml b/.github/workflows/proj-xmidt-team.yml index 941a028..408d640 100644 --- a/.github/workflows/proj-xmidt-team.yml +++ b/.github/workflows/proj-xmidt-team.yml @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +# SPDX-License-Identifier: Apache-2.0 --- name: 'PROJ: xmidt-team' diff --git a/.golangci.yaml b/.golangci.yaml index 7c73dc7..96f5fa5 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +# SPDX-License-Identifier: Apache-2.0 --- linters-settings: misspell: diff --git a/busy/limiter.go b/busy/limiter.go index 5dfca5a..c6def94 100644 --- a/busy/limiter.go +++ b/busy/limiter.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package busy import ( diff --git a/busy/limiter_test.go b/busy/limiter_test.go index 3402903..7ef684d 100644 --- a/busy/limiter_test.go +++ b/busy/limiter_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package busy import ( diff --git a/busy/middleware.go b/busy/middleware.go index d1fc7b6..2833186 100644 --- a/busy/middleware.go +++ b/busy/middleware.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package busy import ( diff --git a/busy/middleware_test.go b/busy/middleware_test.go index ac6880c..210ff10 100644 --- a/busy/middleware_test.go +++ b/busy/middleware_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package busy import ( diff --git a/client/header.go b/client/header.go index ec828ec..5bd5851 100644 --- a/client/header.go +++ b/client/header.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package client import ( diff --git a/client/header_test.go b/client/header_test.go index 1c2eb0a..d5a6e22 100644 --- a/client/header_test.go +++ b/client/header_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package client import ( diff --git a/client/middleware.go b/client/middleware.go index b14e515..74d4760 100644 --- a/client/middleware.go +++ b/client/middleware.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package client import ( diff --git a/client/middleware_test.go b/client/middleware_test.go index b1a5b10..db5456f 100644 --- a/client/middleware_test.go +++ b/client/middleware_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package client import ( diff --git a/erraux/doc.go b/erraux/doc.go index 2f4eef8..8af0e61 100644 --- a/erraux/doc.go +++ b/erraux/doc.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + /* Package erraux provides auxiliary functionality for marshaling and returning errors over HTTP. diff --git a/erraux/encoder.go b/erraux/encoder.go index 3ea80fb..554d6ee 100644 --- a/erraux/encoder.go +++ b/erraux/encoder.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package erraux import ( diff --git a/erraux/encoder_test.go b/erraux/encoder_test.go index 19a8700..69e0857 100644 --- a/erraux/encoder_test.go +++ b/erraux/encoder_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package erraux import ( diff --git a/erraux/error.go b/erraux/error.go index 3f44938..e55e100 100644 --- a/erraux/error.go +++ b/erraux/error.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package erraux import ( diff --git a/erraux/errorFielder.go b/erraux/errorFielder.go index 46b9ea4..7f920fd 100644 --- a/erraux/errorFielder.go +++ b/erraux/errorFielder.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package erraux import ( diff --git a/erraux/errorFielder_test.go b/erraux/errorFielder_test.go index 2530293..9669e23 100644 --- a/erraux/errorFielder_test.go +++ b/erraux/errorFielder_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package erraux import ( diff --git a/erraux/error_test.go b/erraux/error_test.go index 28d3e8b..1370189 100644 --- a/erraux/error_test.go +++ b/erraux/error_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package erraux import ( diff --git a/gate/controlHandler.go b/gate/controlHandler.go index 9ce4047..c87db75 100644 --- a/gate/controlHandler.go +++ b/gate/controlHandler.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package gate import "net/http" diff --git a/gate/controlHandler_test.go b/gate/controlHandler_test.go index 84cc035..f896fe2 100644 --- a/gate/controlHandler_test.go +++ b/gate/controlHandler_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package gate import ( diff --git a/gate/doc.go b/gate/doc.go index 5372a7d..b4cdb88 100644 --- a/gate/doc.go +++ b/gate/doc.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + /* Package gate implements a simple atomic boolean that controls access to HTTP client or server functionality diff --git a/gate/gate.go b/gate/gate.go index 73c54ac..98bac8c 100644 --- a/gate/gate.go +++ b/gate/gate.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package gate import ( diff --git a/gate/gate_test.go b/gate/gate_test.go index ff36dbd..bc56699 100644 --- a/gate/gate_test.go +++ b/gate/gate_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package gate import ( diff --git a/gate/middleware.go b/gate/middleware.go index 1bece79..22861c6 100644 --- a/gate/middleware.go +++ b/gate/middleware.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package gate import ( diff --git a/gate/middleware_test.go b/gate/middleware_test.go index d936220..fc2406d 100644 --- a/gate/middleware_test.go +++ b/gate/middleware_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package gate import ( diff --git a/httpmock/body.go b/httpmock/body.go index 4c88795..2cd00dd 100644 --- a/httpmock/body.go +++ b/httpmock/body.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package httpmock import ( diff --git a/httpmock/body_test.go b/httpmock/body_test.go index 0ccaebf..b7f11b6 100644 --- a/httpmock/body_test.go +++ b/httpmock/body_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package httpmock import ( diff --git a/httpmock/doc.go b/httpmock/doc.go index e64ef15..59d640c 100644 --- a/httpmock/doc.go +++ b/httpmock/doc.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + /* Package httpmock provides stretchr/testify/mock integration */ diff --git a/httpmock/mocks_test.go b/httpmock/mocks_test.go index 9d09126..ed9f233 100644 --- a/httpmock/mocks_test.go +++ b/httpmock/mocks_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package httpmock import "github.com/stretchr/testify/mock" diff --git a/httpmock/requestChecker.go b/httpmock/requestChecker.go index 8db6700..74ade68 100644 --- a/httpmock/requestChecker.go +++ b/httpmock/requestChecker.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package httpmock import ( diff --git a/httpmock/requestChecker_test.go b/httpmock/requestChecker_test.go index aeec34b..692447b 100644 --- a/httpmock/requestChecker_test.go +++ b/httpmock/requestChecker_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package httpmock import ( diff --git a/httpmock/roundTripper.go b/httpmock/roundTripper.go index 157bf71..9610807 100644 --- a/httpmock/roundTripper.go +++ b/httpmock/roundTripper.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package httpmock import ( diff --git a/httpmock/roundTripper_test.go b/httpmock/roundTripper_test.go index ffff7a8..1258c75 100644 --- a/httpmock/roundTripper_test.go +++ b/httpmock/roundTripper_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + //nolint:bodyclose,errorlint // no server responses and all errors must be unwrapped package httpmock diff --git a/observe/doc.go b/observe/doc.go index a91b114..7ff465c 100644 --- a/observe/doc.go +++ b/observe/doc.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + /* Package observe exposes a standard way of decorating http.ResponseWriter objects so that they can be examined by infrastructure such as logging and metrics. diff --git a/observe/middleware.go b/observe/middleware.go index 0597ee5..4afc07e 100644 --- a/observe/middleware.go +++ b/observe/middleware.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package observe import "net/http" diff --git a/observe/middleware_examples_test.go b/observe/middleware_examples_test.go index f1b0061..384dbe3 100644 --- a/observe/middleware_examples_test.go +++ b/observe/middleware_examples_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package observe import ( diff --git a/observe/middleware_test.go b/observe/middleware_test.go index 02850fa..e017421 100644 --- a/observe/middleware_test.go +++ b/observe/middleware_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package observe import ( diff --git a/observe/observe.go b/observe/observe.go index 8d9041b..6ce2dc0 100644 --- a/observe/observe.go +++ b/observe/observe.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package observe import ( diff --git a/observe/observe_test.go b/observe/observe_test.go index 88c773a..5ed746f 100644 --- a/observe/observe_test.go +++ b/observe/observe_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package observe import ( diff --git a/recovery/doc.go b/recovery/doc.go index e807db1..6c5339b 100644 --- a/recovery/doc.go +++ b/recovery/doc.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + /* Package recovery implements an http.Handler that recovers from panics, allowing configurable actions to take when a panic occurs. diff --git a/recovery/middleware.go b/recovery/middleware.go index 5217a39..b57a609 100644 --- a/recovery/middleware.go +++ b/recovery/middleware.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package recovery import ( diff --git a/recovery/middleware_test.go b/recovery/middleware_test.go index b3eb4f6..bb3dc51 100644 --- a/recovery/middleware_test.go +++ b/recovery/middleware_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package recovery import ( diff --git a/retry/check.go b/retry/check.go index 27049b1..81acea0 100644 --- a/retry/check.go +++ b/retry/check.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package retry import ( diff --git a/retry/check_test.go b/retry/check_test.go index 7d51bf7..3cda994 100644 --- a/retry/check_test.go +++ b/retry/check_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package retry import ( diff --git a/retry/client.go b/retry/client.go index 5a31af8..29ee8d6 100644 --- a/retry/client.go +++ b/retry/client.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package retry import ( diff --git a/retry/client_examples_test.go b/retry/client_examples_test.go index f0a4df2..3c11632 100644 --- a/retry/client_examples_test.go +++ b/retry/client_examples_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package retry import ( diff --git a/retry/client_test.go b/retry/client_test.go index cbea9ae..c1e7367 100644 --- a/retry/client_test.go +++ b/retry/client_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + //nolint:bodyclose // none of these test use a "real" response body package retry diff --git a/retry/config.go b/retry/config.go index 3a096d3..bacf6ab 100644 --- a/retry/config.go +++ b/retry/config.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package retry import ( diff --git a/retry/context.go b/retry/context.go index 33ada7c..d3a43f7 100644 --- a/retry/context.go +++ b/retry/context.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package retry import ( diff --git a/retry/context_test.go b/retry/context_test.go index 4ed4649..f97cc88 100644 --- a/retry/context_test.go +++ b/retry/context_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package retry import ( diff --git a/retry/doc.go b/retry/doc.go index d7f568e..f5ac2fe 100644 --- a/retry/doc.go +++ b/retry/doc.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + /* Package retry implements retry logic for HTTP clients. diff --git a/retry/intervals.go b/retry/intervals.go index 8cd8c1f..6148ef5 100644 --- a/retry/intervals.go +++ b/retry/intervals.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package retry import ( diff --git a/retry/intervals_test.go b/retry/intervals_test.go index b4190fa..01d7dcb 100644 --- a/retry/intervals_test.go +++ b/retry/intervals_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package retry import ( diff --git a/retry/mocks_test.go b/retry/mocks_test.go index 0ef2b97..21dc76b 100644 --- a/retry/mocks_test.go +++ b/retry/mocks_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package retry import ( diff --git a/retry/timer.go b/retry/timer.go index 3e7e90e..d0bd430 100644 --- a/retry/timer.go +++ b/retry/timer.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package retry import "time" diff --git a/retry/timer_test.go b/retry/timer_test.go index 42ec24f..e58298a 100644 --- a/retry/timer_test.go +++ b/retry/timer_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package retry import ( diff --git a/roundtrip/doc.go b/roundtrip/doc.go index 4bf0cfc..75c10bf 100644 --- a/roundtrip/doc.go +++ b/roundtrip/doc.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + /* Package roundtrip provides middleware and a few utility types for use with http.RoundTripper diff --git a/roundtrip/header.go b/roundtrip/header.go index 66e6162..ef1bdfd 100644 --- a/roundtrip/header.go +++ b/roundtrip/header.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package roundtrip import ( diff --git a/roundtrip/header_test.go b/roundtrip/header_test.go index 62ebed4..6a7f6f3 100644 --- a/roundtrip/header_test.go +++ b/roundtrip/header_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package roundtrip import ( diff --git a/roundtrip/middleware.go b/roundtrip/middleware.go index 059cdaf..7e3ff1c 100644 --- a/roundtrip/middleware.go +++ b/roundtrip/middleware.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package roundtrip import ( diff --git a/roundtrip/middleware_test.go b/roundtrip/middleware_test.go index ef80609..a2fa449 100644 --- a/roundtrip/middleware_test.go +++ b/roundtrip/middleware_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package roundtrip import ( diff --git a/roundtrip/roundTripper.go b/roundtrip/roundTripper.go index 3b71a01..8e430c4 100644 --- a/roundtrip/roundTripper.go +++ b/roundtrip/roundTripper.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package roundtrip import "net/http" diff --git a/roundtrip/roundTripper_test.go b/roundtrip/roundTripper_test.go index da5e015..f44d9f0 100644 --- a/roundtrip/roundTripper_test.go +++ b/roundtrip/roundTripper_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package roundtrip import ( diff --git a/server/doc.go b/server/doc.go index 32fbafc..238ee2e 100644 --- a/server/doc.go +++ b/server/doc.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + /* Package server provides extra functionality specific to HTTP servers and handlers. diff --git a/server/header.go b/server/header.go index 2c3f55c..743a9c3 100644 --- a/server/header.go +++ b/server/header.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package server import ( diff --git a/server/header_test.go b/server/header_test.go index 82e59d4..514b155 100644 --- a/server/header_test.go +++ b/server/header_test.go @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + package server import (