From e442a896693b1894fe5c586be8ebad2666bcec85 Mon Sep 17 00:00:00 2001 From: Benjamin Wenger <ben@elixxir.ioo> Date: Tue, 30 Aug 2022 16:12:55 -0700 Subject: [PATCH] added copyright headders to channels --- channels/adminListener.go | 7 +++++++ channels/adminListener_test.go | 7 +++++++ channels/channelMessages.pb.go | 2 +- channels/channelMessages.proto | 2 +- channels/emoji.go | 7 +++++++ channels/emoji_test.go | 7 +++++++ channels/errors.go | 7 +++++++ channels/eventModel.go | 7 +++++++ channels/eventModel_test.go | 7 +++++++ channels/generateProto.sh | 2 +- channels/interface.go | 7 +++++++ channels/joinedChannel.go | 7 +++++++ channels/manager.go | 7 +++++++ channels/manager_test.go | 7 +++++++ channels/messageTypes.go | 7 +++++++ channels/messageTypes_test.go | 7 +++++++ channels/messages.go | 2 +- channels/messages_test.go | 2 +- channels/mutateTimestamp.go | 7 +++++++ channels/mutateTimestamp_test.go | 7 +++++++ channels/nameService.go | 7 +++++++ channels/send.go | 7 +++++++ channels/send_test.go | 7 +++++++ channels/text.pb.go | 4 ++-- channels/text.proto | 4 ++-- channels/userListener.go | 7 +++++++ channels/userListener_test.go | 7 +++++++ 27 files changed, 149 insertions(+), 9 deletions(-) diff --git a/channels/adminListener.go b/channels/adminListener.go index 2d2a72ca0..4af751832 100644 --- a/channels/adminListener.go +++ b/channels/adminListener.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/adminListener_test.go b/channels/adminListener_test.go index 928acf11e..a6b78926d 100644 --- a/channels/adminListener_test.go +++ b/channels/adminListener_test.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/channelMessages.pb.go b/channels/channelMessages.pb.go index cd29a3cdf..de61cc003 100644 --- a/channels/channelMessages.pb.go +++ b/channels/channelMessages.pb.go @@ -1,5 +1,5 @@ //////////////////////////////////////////////////////////////////////////////// -// Copyright © 2020 xx network SEZC // +// Copyright © 2022 xx foudnation // // // // Use of this source code is governed by a license that can be found in the // // LICENSE file // diff --git a/channels/channelMessages.proto b/channels/channelMessages.proto index eb3989945..ccffc1fd6 100644 --- a/channels/channelMessages.proto +++ b/channels/channelMessages.proto @@ -1,5 +1,5 @@ //////////////////////////////////////////////////////////////////////////////// -// Copyright © 2020 xx network SEZC // +// Copyright © 2022 xx foundation // // // // Use of this source code is governed by a license that can be found in the // // LICENSE file // diff --git a/channels/emoji.go b/channels/emoji.go index 4823f6fca..f0bf81c8d 100644 --- a/channels/emoji.go +++ b/channels/emoji.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/emoji_test.go b/channels/emoji_test.go index f8b9f43c3..f453cab5f 100644 --- a/channels/emoji_test.go +++ b/channels/emoji_test.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/errors.go b/channels/errors.go index 008b64fcc..6d926af93 100644 --- a/channels/errors.go +++ b/channels/errors.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import "github.com/pkg/errors" diff --git a/channels/eventModel.go b/channels/eventModel.go index 0dd58014e..21a14d239 100644 --- a/channels/eventModel.go +++ b/channels/eventModel.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/eventModel_test.go b/channels/eventModel_test.go index c329ce022..a8513489d 100644 --- a/channels/eventModel_test.go +++ b/channels/eventModel_test.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/generateProto.sh b/channels/generateProto.sh index 3ab1d6b05..4c7614f47 100755 --- a/channels/generateProto.sh +++ b/channels/generateProto.sh @@ -1,7 +1,7 @@ #!/bin/bash #/////////////////////////////////////////////////////////////////////////////// -#/ Copyright © 2020 xx network SEZC // +#/ Copyright © 2022 xx foundation // #/ // #/ Use of this source code is governed by a license that can be found in the // #/ LICENSE file // diff --git a/channels/interface.go b/channels/interface.go index 3d60c7a7a..38b1f8170 100644 --- a/channels/interface.go +++ b/channels/interface.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/joinedChannel.go b/channels/joinedChannel.go index 7f058e3b5..6d4fc2e7b 100644 --- a/channels/joinedChannel.go +++ b/channels/joinedChannel.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/manager.go b/channels/manager.go index 0e931e359..66e112a35 100644 --- a/channels/manager.go +++ b/channels/manager.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/manager_test.go b/channels/manager_test.go index 25fba2b86..fdf3e2bd2 100644 --- a/channels/manager_test.go +++ b/channels/manager_test.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/messageTypes.go b/channels/messageTypes.go index 1a02a4012..5ac6e2de3 100644 --- a/channels/messageTypes.go +++ b/channels/messageTypes.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import "fmt" diff --git a/channels/messageTypes_test.go b/channels/messageTypes_test.go index f3152c872..170ebf054 100644 --- a/channels/messageTypes_test.go +++ b/channels/messageTypes_test.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import "testing" diff --git a/channels/messages.go b/channels/messages.go index b4de7747a..df77a9d92 100644 --- a/channels/messages.go +++ b/channels/messages.go @@ -1,5 +1,5 @@ //////////////////////////////////////////////////////////////////////////////// -// Copyright © 2020 xx network SEZC // +// Copyright © 2022 xx foundation // // // // Use of this source code is governed by a license that can be found in the // // LICENSE file // diff --git a/channels/messages_test.go b/channels/messages_test.go index 26356e33c..cdd9a43fa 100644 --- a/channels/messages_test.go +++ b/channels/messages_test.go @@ -1,5 +1,5 @@ //////////////////////////////////////////////////////////////////////////////// -// Copyright © 2020 xx network SEZC // +// Copyright © 2022 xx foundation // // // // Use of this source code is governed by a license that can be found in the // // LICENSE file // diff --git a/channels/mutateTimestamp.go b/channels/mutateTimestamp.go index 32a2e0186..cbda21f7e 100644 --- a/channels/mutateTimestamp.go +++ b/channels/mutateTimestamp.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/mutateTimestamp_test.go b/channels/mutateTimestamp_test.go index 03faa895d..759053ed9 100644 --- a/channels/mutateTimestamp_test.go +++ b/channels/mutateTimestamp_test.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/nameService.go b/channels/nameService.go index 4ac03eb0b..0884cb9ec 100644 --- a/channels/nameService.go +++ b/channels/nameService.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/send.go b/channels/send.go index 558023c99..ee353c636 100644 --- a/channels/send.go +++ b/channels/send.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/send_test.go b/channels/send_test.go index 633c815cd..d1453344b 100644 --- a/channels/send_test.go +++ b/channels/send_test.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/text.pb.go b/channels/text.pb.go index 20dcb07ee..1977a9261 100644 --- a/channels/text.pb.go +++ b/channels/text.pb.go @@ -1,5 +1,5 @@ -/////////////////////////////////////////////////////////////////////////////// -// Copyright © 2020 xx network SEZC // +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // // // // Use of this source code is governed by a license that can be found in the // // LICENSE file // diff --git a/channels/text.proto b/channels/text.proto index c2d15310a..0abb7e616 100644 --- a/channels/text.proto +++ b/channels/text.proto @@ -1,5 +1,5 @@ -/////////////////////////////////////////////////////////////////////////////// -// Copyright © 2020 xx network SEZC // +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // // // // Use of this source code is governed by a license that can be found in the // // LICENSE file // diff --git a/channels/userListener.go b/channels/userListener.go index 4cc5f6152..b454f3728 100644 --- a/channels/userListener.go +++ b/channels/userListener.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( diff --git a/channels/userListener_test.go b/channels/userListener_test.go index 5a5a0035d..78ec0120f 100644 --- a/channels/userListener_test.go +++ b/channels/userListener_test.go @@ -1,3 +1,10 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2022 xx foundation // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +//////////////////////////////////////////////////////////////////////////////// + package channels import ( -- GitLab