From fbd2073348b5aba565a4f27d16e30696fc2f9e00 Mon Sep 17 00:00:00 2001 From: fabisev Date: Wed, 13 Aug 2025 15:14:39 +0100 Subject: [PATCH] Update copyright header --- test/handlers/isAsync.mjs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test/handlers/isAsync.mjs b/test/handlers/isAsync.mjs index d3be3a3..0338393 100644 --- a/test/handlers/isAsync.mjs +++ b/test/handlers/isAsync.mjs @@ -1,4 +1,7 @@ -/** Copyright 2025 Amazon.com, Inc. or its affiliates. All Rights Reserved. */ +/* +Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. +SPDX-License-Identifier: Apache-2.0 +*/ export const handlerAsync = async () => { const response = { @@ -14,4 +17,4 @@ export const handlerNotAsync = () => { body: JSON.stringify('Hello from Lambda!'), }; return response; -}; \ No newline at end of file +};