diff --git a/constants.go b/constants.go index 591d1caf..c2bbad4e 100644 --- a/constants.go +++ b/constants.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package jsonapi const ( diff --git a/doc.go b/doc.go index ba4068a8..f1a61990 100644 --- a/doc.go +++ b/doc.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + /* Package jsonapi provides a serializer and deserializer for jsonapi.org spec payloads. diff --git a/errors.go b/errors.go index 4eab7427..74f14a80 100644 --- a/errors.go +++ b/errors.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package jsonapi import ( diff --git a/errors_test.go b/errors_test.go index 78d1c4e2..7fe77942 100644 --- a/errors_test.go +++ b/errors_test.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package jsonapi import ( diff --git a/examples/app.go b/examples/app.go index cbd15d47..a9b41a57 100644 --- a/examples/app.go +++ b/examples/app.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package main import ( diff --git a/examples/fixtures.go b/examples/fixtures.go index 6c87983d..68398713 100644 --- a/examples/fixtures.go +++ b/examples/fixtures.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package main import ( diff --git a/examples/handler.go b/examples/handler.go index f01a3600..5e1a3952 100644 --- a/examples/handler.go +++ b/examples/handler.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package main import ( diff --git a/examples/handler_test.go b/examples/handler_test.go index 8df53aa6..1f9b41f5 100644 --- a/examples/handler_test.go +++ b/examples/handler_test.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package main import ( diff --git a/examples/models.go b/examples/models.go index 83347253..635d2a62 100644 --- a/examples/models.go +++ b/examples/models.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package main import ( diff --git a/models_test.go b/models_test.go index 237f93a7..bc722986 100644 --- a/models_test.go +++ b/models_test.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package jsonapi import ( diff --git a/node.go b/node.go index a58488c8..25c7041e 100644 --- a/node.go +++ b/node.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package jsonapi import "fmt" diff --git a/nullable.go b/nullable.go index 7a661497..1669b581 100644 --- a/nullable.go +++ b/nullable.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package jsonapi import ( diff --git a/request.go b/request.go index 79b983a3..d194876f 100644 --- a/request.go +++ b/request.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package jsonapi import ( diff --git a/request_test.go b/request_test.go index 2b712d2a..e6bc4f0b 100644 --- a/request_test.go +++ b/request_test.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package jsonapi import ( diff --git a/response.go b/response.go index 888d6509..330abc51 100644 --- a/response.go +++ b/response.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package jsonapi import ( diff --git a/response_test.go b/response_test.go index 9b8711e0..05ba5c10 100644 --- a/response_test.go +++ b/response_test.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package jsonapi import ( diff --git a/runtime.go b/runtime.go index eaa65094..4da47629 100644 --- a/runtime.go +++ b/runtime.go @@ -1,3 +1,6 @@ +// Copyright IBM Corp. 2015, 2025 +// SPDX-License-Identifier: MIT + package jsonapi import (