From 3101fc55430334e83e6fbdcf7a5e41472f0aad99 Mon Sep 17 00:00:00 2001 From: James Houlahan Date: Wed, 12 Aug 2020 15:05:14 +0200 Subject: [PATCH] fix: add missing license --- pkg/cookies/jar.go | 17 +++++++++++++++++ pkg/cookies/jar_test.go | 17 +++++++++++++++++ pkg/cookies/persister.go | 17 +++++++++++++++++ 3 files changed, 51 insertions(+) diff --git a/pkg/cookies/jar.go b/pkg/cookies/jar.go index afe9a57f..da439c2c 100644 --- a/pkg/cookies/jar.go +++ b/pkg/cookies/jar.go @@ -1,3 +1,20 @@ +// Copyright (c) 2020 Proton Technologies AG +// +// This file is part of ProtonMail Bridge. +// +// ProtonMail Bridge is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ProtonMail Bridge is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with ProtonMail Bridge. If not, see . + package cookies import ( diff --git a/pkg/cookies/jar_test.go b/pkg/cookies/jar_test.go index 472353b1..87719e88 100644 --- a/pkg/cookies/jar_test.go +++ b/pkg/cookies/jar_test.go @@ -1,3 +1,20 @@ +// Copyright (c) 2020 Proton Technologies AG +// +// This file is part of ProtonMail Bridge. +// +// ProtonMail Bridge is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ProtonMail Bridge is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with ProtonMail Bridge. If not, see . + package cookies import ( diff --git a/pkg/cookies/persister.go b/pkg/cookies/persister.go index b911c59c..84e3f4c9 100644 --- a/pkg/cookies/persister.go +++ b/pkg/cookies/persister.go @@ -1,3 +1,20 @@ +// Copyright (c) 2020 Proton Technologies AG +// +// This file is part of ProtonMail Bridge. +// +// ProtonMail Bridge is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ProtonMail Bridge is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with ProtonMail Bridge. If not, see . + package cookies import (