From 0b355ac5ab01bff9d391e75a6ed8d8eb86ab9e8e Mon Sep 17 00:00:00 2001 From: "Jim Wang @ Intel" Date: Tue, 26 Sep 2023 09:30:18 -0700 Subject: [PATCH] feat: update license year to include 2023 (#149) Closes: #138 Signed-off-by: Jim Wang --- LICENSE | 2 +- Makefile | 2 +- as-controller-board-status/.golangci.yml | 2 +- as-controller-board-status/config/configuration.go | 2 +- as-controller-board-status/functions/common.go | 2 +- as-vending/.golangci.yml | 2 +- as-vending/LICENSE | 2 +- as-vending/config/configuration.go | 2 +- as-vending/functions/models.go | 2 +- as-vending/functions/output.go | 2 +- as-vending/functions/output_test.go | 2 +- as-vending/go.mod | 2 +- as-vending/routes/controller.go | 2 +- as-vending/routes/controller_test.go | 2 +- ds-card-reader/.golangci.yml | 2 +- ds-card-reader/LICENSE | 2 +- ds-card-reader/common/common.go | 2 +- ds-card-reader/device/config.go | 2 +- ds-card-reader/device/config_test.go | 2 +- ds-card-reader/res/profiles/ds-card-reader.yaml | 4 +--- ds-controller-board/LICENSE | 2 +- ds-cv-inference/.golangci.yml | 2 +- ds-cv-inference/mjpeg/mjpeg.go | 2 +- ms-authentication/.golangci.yml | 2 +- ms-authentication/LICENSE | 2 +- ms-authentication/go.mod | 2 +- ms-authentication/routes/common_test.go | 2 +- ms-authentication/routes/controller.go | 2 +- ms-authentication/routes/controller_test.go | 2 +- ms-authentication/routes/gets.go | 2 +- ms-authentication/routes/gets_test.go | 2 +- ms-inventory/.golangci.yml | 2 +- ms-inventory/LICENSE | 2 +- ms-inventory/go.mod | 2 +- ms-inventory/main.go | 2 +- ms-inventory/routes/common.go | 2 +- ms-inventory/routes/common_test.go | 2 +- ms-inventory/routes/controller.go | 2 +- ms-inventory/routes/controller_test.go | 2 +- ms-inventory/routes/deletes.go | 2 +- ms-inventory/routes/deletes_test.go | 2 +- ms-inventory/routes/gets.go | 2 +- ms-inventory/routes/gets_test.go | 2 +- ms-inventory/routes/sets.go | 2 +- ms-inventory/routes/sets_test.go | 2 +- ms-ledger/.golangci.yml | 2 +- ms-ledger/LICENSE | 2 +- ms-ledger/go.mod | 2 +- ms-ledger/routes/common.go | 4 ++-- ms-ledger/routes/common_test.go | 2 +- ms-ledger/routes/controller.go | 2 +- ms-ledger/routes/controller_test.go | 2 +- ms-ledger/routes/deletes.go | 2 +- ms-ledger/routes/deletes_test.go | 2 +- ms-ledger/routes/gets.go | 2 +- ms-ledger/routes/gets_test.go | 2 +- ms-ledger/routes/models.go | 2 +- ms-ledger/routes/sets.go | 2 +- ms-ledger/routes/sets_test.go | 2 +- 59 files changed, 60 insertions(+), 62 deletions(-) diff --git a/LICENSE b/LICENSE index 7c6d70c..9a3563f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ BSD 3-Clause License -Copyright © 2020-2022, Intel Corporation +Copyright © 2020-2023, Intel Corporation All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/Makefile b/Makefile index d73e1bf..c821edb 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright © 2022 Intel Corporation. All rights reserved. +# Copyright © 2022-2023 Intel Corporation. All rights reserved. # SPDX-License-Identifier: BSD-3-Clause .PHONY: clean \ diff --git a/as-controller-board-status/.golangci.yml b/as-controller-board-status/.golangci.yml index 61af441..efc6e80 100644 --- a/as-controller-board-status/.golangci.yml +++ b/as-controller-board-status/.golangci.yml @@ -1,4 +1,4 @@ -# Copyright © 2022 Intel Corporation. All rights reserved. +# Copyright © 2022-2023 Intel Corporation. All rights reserved. # SPDX-License-Identifier: BSD-3-Clause run: diff --git a/as-controller-board-status/config/configuration.go b/as-controller-board-status/config/configuration.go index bf7e1fa..41678ef 100644 --- a/as-controller-board-status/config/configuration.go +++ b/as-controller-board-status/config/configuration.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package config diff --git a/as-controller-board-status/functions/common.go b/as-controller-board-status/functions/common.go index 965b3c1..6b8d0db 100644 --- a/as-controller-board-status/functions/common.go +++ b/as-controller-board-status/functions/common.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package functions diff --git a/as-vending/.golangci.yml b/as-vending/.golangci.yml index b6f67b3..40eb688 100644 --- a/as-vending/.golangci.yml +++ b/as-vending/.golangci.yml @@ -1,4 +1,4 @@ -# Copyright © 2022 Intel Corporation. All rights reserved. +# Copyright © 2022-2023 Intel Corporation. All rights reserved. # SPDX-License-Identifier: BSD-3-Clause run: # timeout for analysis, e.g. 30s, 5m, default is 1m diff --git a/as-vending/LICENSE b/as-vending/LICENSE index 7c1aef1..df5d5be 100644 --- a/as-vending/LICENSE +++ b/as-vending/LICENSE @@ -1,6 +1,6 @@ BSD 3-Clause License -Copyright © 2020-2022, Intel Corporation +Copyright © 2020-2023, Intel Corporation All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/as-vending/config/configuration.go b/as-vending/config/configuration.go index 57f3436..05813db 100644 --- a/as-vending/config/configuration.go +++ b/as-vending/config/configuration.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package config diff --git a/as-vending/functions/models.go b/as-vending/functions/models.go index eb9f65e..9ee7120 100644 --- a/as-vending/functions/models.go +++ b/as-vending/functions/models.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package functions diff --git a/as-vending/functions/output.go b/as-vending/functions/output.go index 0cb2b90..2c49dfd 100644 --- a/as-vending/functions/output.go +++ b/as-vending/functions/output.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package functions diff --git a/as-vending/functions/output_test.go b/as-vending/functions/output_test.go index 65a41d3..4c1c0a8 100644 --- a/as-vending/functions/output_test.go +++ b/as-vending/functions/output_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package functions diff --git a/as-vending/go.mod b/as-vending/go.mod index 9af0c8e..2f95ea6 100644 --- a/as-vending/go.mod +++ b/as-vending/go.mod @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause module as-vending diff --git a/as-vending/routes/controller.go b/as-vending/routes/controller.go index 80fa012..6ef059e 100644 --- a/as-vending/routes/controller.go +++ b/as-vending/routes/controller.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/as-vending/routes/controller_test.go b/as-vending/routes/controller_test.go index 6ab2688..08aadea 100644 --- a/as-vending/routes/controller_test.go +++ b/as-vending/routes/controller_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ds-card-reader/.golangci.yml b/ds-card-reader/.golangci.yml index c147474..eedbb4d 100644 --- a/ds-card-reader/.golangci.yml +++ b/ds-card-reader/.golangci.yml @@ -1,4 +1,4 @@ -# Copyright © 2022 Intel Corporation. All rights reserved. +# Copyright © 2022-2023 Intel Corporation. All rights reserved. # SPDX-License-Identifier: BSD-3-Clause run: diff --git a/ds-card-reader/LICENSE b/ds-card-reader/LICENSE index 7bad583..4f84e34 100644 --- a/ds-card-reader/LICENSE +++ b/ds-card-reader/LICENSE @@ -1,6 +1,6 @@ BSD 3-Clause License -Copyright © 2020-2022, Intel Corporation +Copyright © 2020-2023, Intel Corporation All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/ds-card-reader/common/common.go b/ds-card-reader/common/common.go index 5b3cb7f..f7362ee 100644 --- a/ds-card-reader/common/common.go +++ b/ds-card-reader/common/common.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package common diff --git a/ds-card-reader/device/config.go b/ds-card-reader/device/config.go index fbd6d93..e567ad0 100644 --- a/ds-card-reader/device/config.go +++ b/ds-card-reader/device/config.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package device diff --git a/ds-card-reader/device/config_test.go b/ds-card-reader/device/config_test.go index 06a9247..494893a 100644 --- a/ds-card-reader/device/config_test.go +++ b/ds-card-reader/device/config_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package device diff --git a/ds-card-reader/res/profiles/ds-card-reader.yaml b/ds-card-reader/res/profiles/ds-card-reader.yaml index bcbbb98..487bfd9 100644 --- a/ds-card-reader/res/profiles/ds-card-reader.yaml +++ b/ds-card-reader/res/profiles/ds-card-reader.yaml @@ -1,6 +1,4 @@ ---- - -# Copyright © 2022 Intel Corporation. All rights reserved. +# Copyright © 2022-2023 Intel Corporation. All rights reserved. # SPDX-License-Identifier: BSD-3-Clause name: "rfid-card-reader" diff --git a/ds-controller-board/LICENSE b/ds-controller-board/LICENSE index 7c1aef1..df5d5be 100644 --- a/ds-controller-board/LICENSE +++ b/ds-controller-board/LICENSE @@ -1,6 +1,6 @@ BSD 3-Clause License -Copyright © 2020-2022, Intel Corporation +Copyright © 2020-2023, Intel Corporation All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/ds-cv-inference/.golangci.yml b/ds-cv-inference/.golangci.yml index 0de07d8..3c39ddb 100644 --- a/ds-cv-inference/.golangci.yml +++ b/ds-cv-inference/.golangci.yml @@ -1,4 +1,4 @@ -# Copyright © 2022 Intel Corporation. All rights reserved. +# Copyright © 2022-2023 Intel Corporation. All rights reserved. # SPDX-License-Identifier: BSD-3-Clause run: diff --git a/ds-cv-inference/mjpeg/mjpeg.go b/ds-cv-inference/mjpeg/mjpeg.go index 21f17f3..fcae3c9 100644 --- a/ds-cv-inference/mjpeg/mjpeg.go +++ b/ds-cv-inference/mjpeg/mjpeg.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package mjpeg diff --git a/ms-authentication/.golangci.yml b/ms-authentication/.golangci.yml index 61af441..efc6e80 100644 --- a/ms-authentication/.golangci.yml +++ b/ms-authentication/.golangci.yml @@ -1,4 +1,4 @@ -# Copyright © 2022 Intel Corporation. All rights reserved. +# Copyright © 2022-2023 Intel Corporation. All rights reserved. # SPDX-License-Identifier: BSD-3-Clause run: diff --git a/ms-authentication/LICENSE b/ms-authentication/LICENSE index 7bad583..4f84e34 100644 --- a/ms-authentication/LICENSE +++ b/ms-authentication/LICENSE @@ -1,6 +1,6 @@ BSD 3-Clause License -Copyright © 2020-2022, Intel Corporation +Copyright © 2020-2023, Intel Corporation All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/ms-authentication/go.mod b/ms-authentication/go.mod index 0613b58..86cdbc1 100644 --- a/ms-authentication/go.mod +++ b/ms-authentication/go.mod @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause module ms-authentication diff --git a/ms-authentication/routes/common_test.go b/ms-authentication/routes/common_test.go index 34baf5e..8bdc0be 100644 --- a/ms-authentication/routes/common_test.go +++ b/ms-authentication/routes/common_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-authentication/routes/controller.go b/ms-authentication/routes/controller.go index fed00af..b58fc46 100644 --- a/ms-authentication/routes/controller.go +++ b/ms-authentication/routes/controller.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-authentication/routes/controller_test.go b/ms-authentication/routes/controller_test.go index 0575e2e..287f672 100644 --- a/ms-authentication/routes/controller_test.go +++ b/ms-authentication/routes/controller_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-authentication/routes/gets.go b/ms-authentication/routes/gets.go index de31d85..8bb99d7 100644 --- a/ms-authentication/routes/gets.go +++ b/ms-authentication/routes/gets.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-authentication/routes/gets_test.go b/ms-authentication/routes/gets_test.go index 494240a..cf3e3a4 100644 --- a/ms-authentication/routes/gets_test.go +++ b/ms-authentication/routes/gets_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-inventory/.golangci.yml b/ms-inventory/.golangci.yml index 61af441..efc6e80 100644 --- a/ms-inventory/.golangci.yml +++ b/ms-inventory/.golangci.yml @@ -1,4 +1,4 @@ -# Copyright © 2022 Intel Corporation. All rights reserved. +# Copyright © 2022-2023 Intel Corporation. All rights reserved. # SPDX-License-Identifier: BSD-3-Clause run: diff --git a/ms-inventory/LICENSE b/ms-inventory/LICENSE index 7bad583..4f84e34 100644 --- a/ms-inventory/LICENSE +++ b/ms-inventory/LICENSE @@ -1,6 +1,6 @@ BSD 3-Clause License -Copyright © 2020-2022, Intel Corporation +Copyright © 2020-2023, Intel Corporation All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/ms-inventory/go.mod b/ms-inventory/go.mod index 587674e..e7222a4 100644 --- a/ms-inventory/go.mod +++ b/ms-inventory/go.mod @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause module ms-inventory diff --git a/ms-inventory/main.go b/ms-inventory/main.go index 79c51d6..800a4a6 100644 --- a/ms-inventory/main.go +++ b/ms-inventory/main.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package main diff --git a/ms-inventory/routes/common.go b/ms-inventory/routes/common.go index dc6dd4b..989a116 100644 --- a/ms-inventory/routes/common.go +++ b/ms-inventory/routes/common.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-inventory/routes/common_test.go b/ms-inventory/routes/common_test.go index 012d39e..bbe0b40 100644 --- a/ms-inventory/routes/common_test.go +++ b/ms-inventory/routes/common_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-inventory/routes/controller.go b/ms-inventory/routes/controller.go index 83f5c0c..fb9386f 100644 --- a/ms-inventory/routes/controller.go +++ b/ms-inventory/routes/controller.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-inventory/routes/controller_test.go b/ms-inventory/routes/controller_test.go index 62d7012..43acb02 100644 --- a/ms-inventory/routes/controller_test.go +++ b/ms-inventory/routes/controller_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-inventory/routes/deletes.go b/ms-inventory/routes/deletes.go index e82f0e1..61618d6 100644 --- a/ms-inventory/routes/deletes.go +++ b/ms-inventory/routes/deletes.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-inventory/routes/deletes_test.go b/ms-inventory/routes/deletes_test.go index c6570de..9778649 100644 --- a/ms-inventory/routes/deletes_test.go +++ b/ms-inventory/routes/deletes_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-inventory/routes/gets.go b/ms-inventory/routes/gets.go index d2f2c7f..5e9be90 100644 --- a/ms-inventory/routes/gets.go +++ b/ms-inventory/routes/gets.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-inventory/routes/gets_test.go b/ms-inventory/routes/gets_test.go index 966ca31..ecede77 100644 --- a/ms-inventory/routes/gets_test.go +++ b/ms-inventory/routes/gets_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-inventory/routes/sets.go b/ms-inventory/routes/sets.go index f524b3f..b7a7209 100644 --- a/ms-inventory/routes/sets.go +++ b/ms-inventory/routes/sets.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-inventory/routes/sets_test.go b/ms-inventory/routes/sets_test.go index f6550ad..f56c67e 100644 --- a/ms-inventory/routes/sets_test.go +++ b/ms-inventory/routes/sets_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-ledger/.golangci.yml b/ms-ledger/.golangci.yml index 61af441..efc6e80 100644 --- a/ms-ledger/.golangci.yml +++ b/ms-ledger/.golangci.yml @@ -1,4 +1,4 @@ -# Copyright © 2022 Intel Corporation. All rights reserved. +# Copyright © 2022-2023 Intel Corporation. All rights reserved. # SPDX-License-Identifier: BSD-3-Clause run: diff --git a/ms-ledger/LICENSE b/ms-ledger/LICENSE index 7bad583..4f84e34 100644 --- a/ms-ledger/LICENSE +++ b/ms-ledger/LICENSE @@ -1,6 +1,6 @@ BSD 3-Clause License -Copyright © 2020-2022, Intel Corporation +Copyright © 2020-2023, Intel Corporation All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/ms-ledger/go.mod b/ms-ledger/go.mod index e1f5a17..8929be6 100644 --- a/ms-ledger/go.mod +++ b/ms-ledger/go.mod @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause module ms-ledger diff --git a/ms-ledger/routes/common.go b/ms-ledger/routes/common.go index c36589a..0d954f6 100644 --- a/ms-ledger/routes/common.go +++ b/ms-ledger/routes/common.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes @@ -13,7 +13,7 @@ import ( utilities "github.com/intel-iot-devkit/automated-checkout-utilities" ) -const( +const ( connectionTimeout = 15 ) diff --git a/ms-ledger/routes/common_test.go b/ms-ledger/routes/common_test.go index 468c249..d5cc48c 100644 --- a/ms-ledger/routes/common_test.go +++ b/ms-ledger/routes/common_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-ledger/routes/controller.go b/ms-ledger/routes/controller.go index c58cb10..1abacb5 100644 --- a/ms-ledger/routes/controller.go +++ b/ms-ledger/routes/controller.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-ledger/routes/controller_test.go b/ms-ledger/routes/controller_test.go index 46d582b..dc1d993 100644 --- a/ms-ledger/routes/controller_test.go +++ b/ms-ledger/routes/controller_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-ledger/routes/deletes.go b/ms-ledger/routes/deletes.go index 0531b3b..da083e5 100644 --- a/ms-ledger/routes/deletes.go +++ b/ms-ledger/routes/deletes.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-ledger/routes/deletes_test.go b/ms-ledger/routes/deletes_test.go index 489a592..005e86c 100644 --- a/ms-ledger/routes/deletes_test.go +++ b/ms-ledger/routes/deletes_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-ledger/routes/gets.go b/ms-ledger/routes/gets.go index 9db25d8..b74dc15 100644 --- a/ms-ledger/routes/gets.go +++ b/ms-ledger/routes/gets.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-ledger/routes/gets_test.go b/ms-ledger/routes/gets_test.go index f7830df..6cba5c6 100644 --- a/ms-ledger/routes/gets_test.go +++ b/ms-ledger/routes/gets_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-ledger/routes/models.go b/ms-ledger/routes/models.go index 8e80352..f42b476 100644 --- a/ms-ledger/routes/models.go +++ b/ms-ledger/routes/models.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-ledger/routes/sets.go b/ms-ledger/routes/sets.go index 98735fc..52b125a 100644 --- a/ms-ledger/routes/sets.go +++ b/ms-ledger/routes/sets.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes diff --git a/ms-ledger/routes/sets_test.go b/ms-ledger/routes/sets_test.go index 0ecd430..1c1a22c 100644 --- a/ms-ledger/routes/sets_test.go +++ b/ms-ledger/routes/sets_test.go @@ -1,4 +1,4 @@ -// Copyright © 2022 Intel Corporation. All rights reserved. +// Copyright © 2022-2023 Intel Corporation. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause package routes