From 35376a407b4e7a56cc7cefba07f1314294e90b35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Hurtado?= Date: Wed, 22 Apr 2020 16:50:10 +0200 Subject: [PATCH] Add missing copyright message to source files --- internal/logger/logger.go | 16 ++++++++++++++++ internal/logger/logger_test.go | 16 ++++++++++++++++ internal/server/httperror/error.go | 16 ++++++++++++++++ internal/server/httperror/error_test.go | 16 ++++++++++++++++ 4 files changed, 64 insertions(+) diff --git a/internal/logger/logger.go b/internal/logger/logger.go index b045d27..d0e047d 100644 --- a/internal/logger/logger.go +++ b/internal/logger/logger.go @@ -1,3 +1,19 @@ +/* + * Copyright 2019 Banco Bilbao Vizcaya Argentaria, S.A. + * + * 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 logger import ( diff --git a/internal/logger/logger_test.go b/internal/logger/logger_test.go index e63d35c..c61551a 100644 --- a/internal/logger/logger_test.go +++ b/internal/logger/logger_test.go @@ -1,3 +1,19 @@ +/* + * Copyright 2019 Banco Bilbao Vizcaya Argentaria, S.A. + * + * 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 logger import ( diff --git a/internal/server/httperror/error.go b/internal/server/httperror/error.go index 293c638..7aadc86 100644 --- a/internal/server/httperror/error.go +++ b/internal/server/httperror/error.go @@ -1,3 +1,19 @@ +/* + * Copyright 2019 Banco Bilbao Vizcaya Argentaria, S.A. + * + * 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 httperror import ( diff --git a/internal/server/httperror/error_test.go b/internal/server/httperror/error_test.go index 2c98145..7bc209d 100644 --- a/internal/server/httperror/error_test.go +++ b/internal/server/httperror/error_test.go @@ -1,3 +1,19 @@ +/* + * Copyright 2019 Banco Bilbao Vizcaya Argentaria, S.A. + * + * 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 httperror_test import (