From 521fad34cb24fcce5a371998c38ac03f2a8fad11 Mon Sep 17 00:00:00 2001 From: Leonardo Grasso Date: Wed, 11 Oct 2023 17:37:50 +0200 Subject: [PATCH] docs: add license header and spdx id Signed-off-by: Leonardo Grasso --- matrix_gen/main.go | 18 ++++++++++++++++++ matrix_gen/pkg/matrix/error.go | 18 ++++++++++++++++++ matrix_gen/pkg/matrix/output.go | 18 ++++++++++++++++++ 3 files changed, 54 insertions(+) diff --git a/matrix_gen/main.go b/matrix_gen/main.go index f0a6c3f..da04479 100644 --- a/matrix_gen/main.go +++ b/matrix_gen/main.go @@ -1,3 +1,21 @@ +// SPDX-License-Identifier: Apache-2.0 +/* +Copyright (C) 2023 The Falco Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +*/ + package main import ( diff --git a/matrix_gen/pkg/matrix/error.go b/matrix_gen/pkg/matrix/error.go index a92020e..23d1d3d 100644 --- a/matrix_gen/pkg/matrix/error.go +++ b/matrix_gen/pkg/matrix/error.go @@ -1,3 +1,21 @@ +// SPDX-License-Identifier: Apache-2.0 +/* +Copyright (C) 2023 The Falco Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +*/ + package matrix import ( diff --git a/matrix_gen/pkg/matrix/output.go b/matrix_gen/pkg/matrix/output.go index 1d83c8a..252c7d2 100644 --- a/matrix_gen/pkg/matrix/output.go +++ b/matrix_gen/pkg/matrix/output.go @@ -1,3 +1,21 @@ +// SPDX-License-Identifier: Apache-2.0 +/* +Copyright (C) 2023 The Falco Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +*/ + package matrix import (