From 67c22d9015269136db2271d7f4d25b9c9c459a02 Mon Sep 17 00:00:00 2001 From: kvnxiao Date: Sat, 29 Feb 2020 02:15:23 -0500 Subject: [PATCH] Add license headers --- terminal/tcell/cell_options.go | 14 ++++++++++++++ terminal/tcell/cell_options_test.go | 14 ++++++++++++++ terminal/tcell/event.go | 14 ++++++++++++++ terminal/tcell/event_test.go | 14 ++++++++++++++ terminal/tcell/tcell.go | 14 ++++++++++++++ 5 files changed, 70 insertions(+) diff --git a/terminal/tcell/cell_options.go b/terminal/tcell/cell_options.go index 90f547e..7d22c25 100644 --- a/terminal/tcell/cell_options.go +++ b/terminal/tcell/cell_options.go @@ -1,3 +1,17 @@ +// Copyright 2020 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 tcell import ( diff --git a/terminal/tcell/cell_options_test.go b/terminal/tcell/cell_options_test.go index acbacdb..d8b1887 100644 --- a/terminal/tcell/cell_options_test.go +++ b/terminal/tcell/cell_options_test.go @@ -1,3 +1,17 @@ +// Copyright 2020 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 tcell import ( diff --git a/terminal/tcell/event.go b/terminal/tcell/event.go index d215331..ff1b122 100644 --- a/terminal/tcell/event.go +++ b/terminal/tcell/event.go @@ -1,3 +1,17 @@ +// Copyright 2020 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 tcell import ( diff --git a/terminal/tcell/event_test.go b/terminal/tcell/event_test.go index d10cf77..6be5ca1 100644 --- a/terminal/tcell/event_test.go +++ b/terminal/tcell/event_test.go @@ -1,3 +1,17 @@ +// Copyright 2020 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 tcell import ( diff --git a/terminal/tcell/tcell.go b/terminal/tcell/tcell.go index 143aed2..acdb311 100644 --- a/terminal/tcell/tcell.go +++ b/terminal/tcell/tcell.go @@ -1,3 +1,17 @@ +// Copyright 2020 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 tcell import (