From b779005eef3736c49d948ac61fb249c13a269c1e Mon Sep 17 00:00:00 2001 From: Manish R Jain <manishrjain@gmail.com> Date: Fri, 11 Mar 2016 12:12:26 +1100 Subject: [PATCH] Add copyright notice to all files in conn module --- conn/client.go | 16 ++++++++++++++++ conn/codec.go | 16 ++++++++++++++++ conn/codec_test.go | 16 ++++++++++++++++ conn/pool.go | 16 ++++++++++++++++ conn/server.go | 16 ++++++++++++++++ 5 files changed, 80 insertions(+) diff --git a/conn/client.go b/conn/client.go index 27bdd904..47bee518 100644 --- a/conn/client.go +++ b/conn/client.go @@ -1,3 +1,19 @@ +/* + * Copyright 2016 DGraph Labs, 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 conn import ( diff --git a/conn/codec.go b/conn/codec.go index 08954f2b..ec921739 100644 --- a/conn/codec.go +++ b/conn/codec.go @@ -1,3 +1,19 @@ +/* + * Copyright 2016 DGraph Labs, 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 conn import ( diff --git a/conn/codec_test.go b/conn/codec_test.go index ce3fe0e7..16a305d1 100644 --- a/conn/codec_test.go +++ b/conn/codec_test.go @@ -1,3 +1,19 @@ +/* + * Copyright 2016 DGraph Labs, 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 conn import ( diff --git a/conn/pool.go b/conn/pool.go index dc9289e7..76a107e5 100644 --- a/conn/pool.go +++ b/conn/pool.go @@ -1,3 +1,19 @@ +/* + * Copyright 2016 DGraph Labs, 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 conn import ( diff --git a/conn/server.go b/conn/server.go index 7085d353..406ea9bc 100644 --- a/conn/server.go +++ b/conn/server.go @@ -1,3 +1,19 @@ +/* + * Copyright 2016 DGraph Labs, 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 conn import ( -- GitLab