From b53dce041217af3d75c506aca8855c39918111b1 Mon Sep 17 00:00:00 2001 From: Jakub Sobon Date: Tue, 19 Feb 2019 00:23:15 -0500 Subject: [PATCH] Adding licences. --- event/event.go | 14 ++++++++++++++ event/event_test.go | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/event/event.go b/event/event.go index bd49afd..567e2b3 100644 --- a/event/event.go +++ b/event/event.go @@ -1,3 +1,17 @@ +// Copyright 2019 Google Inc. +// +// 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 event provides a non-blocking event distribution and subscription // system. package event diff --git a/event/event_test.go b/event/event_test.go index 16077cd..5b7b3b9 100644 --- a/event/event_test.go +++ b/event/event_test.go @@ -1,3 +1,17 @@ +// Copyright 2019 Google Inc. +// +// 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 event import (