From 2046459567457fe74914e12e9098d94e72ebb9f4 Mon Sep 17 00:00:00 2001 From: jaketaylor <jake@privategrity.com> Date: Wed, 21 Feb 2018 15:19:41 -0800 Subject: [PATCH] Added copyrights --- api/client.go | 6 ++++++ api/client_test.go | 6 ++++++ cmd/root.go | 8 +++++--- crypto/decrypt.go | 6 ++++++ crypto/encrypt.go | 6 ++++++ globals/message.go | 6 ++++++ globals/message_test.go | 6 ++++++ globals/user.go | 6 ++++++ globals/userSession.go | 6 ++++++ globals/userSession_test.go | 6 ++++++ globals/user_test.go | 6 ++++++ io/pollingReception.go | 6 ++++++ io/transmitMessage.go | 6 ++++++ main.go | 10 ++++++---- 14 files changed, 83 insertions(+), 7 deletions(-) diff --git a/api/client.go b/api/client.go index 800d2a156..75f70d942 100644 --- a/api/client.go +++ b/api/client.go @@ -1,3 +1,9 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2018 Privategrity Corporation / +// / +// All rights reserved. / +//////////////////////////////////////////////////////////////////////////////// + package api import ( diff --git a/api/client_test.go b/api/client_test.go index cbeef676c..2ef79fc70 100644 --- a/api/client_test.go +++ b/api/client_test.go @@ -1,3 +1,9 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2018 Privategrity Corporation / +// / +// All rights reserved. / +//////////////////////////////////////////////////////////////////////////////// + package api import "testing" diff --git a/cmd/root.go b/cmd/root.go index 44eba1fcd..89749bc27 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -1,6 +1,8 @@ -// Copyright © 2018 Privategrity Corporation -// -// All rights reserved. +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2018 Privategrity Corporation / +// / +// All rights reserved. / +//////////////////////////////////////////////////////////////////////////////// // Package cmd initializes the CLI and config parsers as well as the logger. package cmd diff --git a/crypto/decrypt.go b/crypto/decrypt.go index 132fb9be4..f547562fc 100644 --- a/crypto/decrypt.go +++ b/crypto/decrypt.go @@ -1,3 +1,9 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2018 Privategrity Corporation / +// / +// All rights reserved. / +//////////////////////////////////////////////////////////////////////////////// + package crypto import ( diff --git a/crypto/encrypt.go b/crypto/encrypt.go index 831254c28..7816299cb 100644 --- a/crypto/encrypt.go +++ b/crypto/encrypt.go @@ -1,3 +1,9 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2018 Privategrity Corporation / +// / +// All rights reserved. / +//////////////////////////////////////////////////////////////////////////////// + package crypto import ( diff --git a/globals/message.go b/globals/message.go index 217eaa4e5..efb47da73 100644 --- a/globals/message.go +++ b/globals/message.go @@ -1,3 +1,9 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2018 Privategrity Corporation / +// / +// All rights reserved. / +//////////////////////////////////////////////////////////////////////////////// + package globals import ( diff --git a/globals/message_test.go b/globals/message_test.go index 7d11982c9..70f9524f0 100644 --- a/globals/message_test.go +++ b/globals/message_test.go @@ -1,3 +1,9 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2018 Privategrity Corporation / +// / +// All rights reserved. / +//////////////////////////////////////////////////////////////////////////////// + package globals import ( diff --git a/globals/user.go b/globals/user.go index e5a51f488..4543a33b1 100644 --- a/globals/user.go +++ b/globals/user.go @@ -1,3 +1,9 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2018 Privategrity Corporation / +// / +// All rights reserved. / +//////////////////////////////////////////////////////////////////////////////// + package globals // Globally instantiated UserRegistry diff --git a/globals/userSession.go b/globals/userSession.go index 7d449e5bd..ec1dcd8aa 100644 --- a/globals/userSession.go +++ b/globals/userSession.go @@ -1,3 +1,9 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2018 Privategrity Corporation / +// / +// All rights reserved. / +//////////////////////////////////////////////////////////////////////////////// + package globals // Globally instantiated UserSession diff --git a/globals/userSession_test.go b/globals/userSession_test.go index 1fe08741e..02ad9bda1 100644 --- a/globals/userSession_test.go +++ b/globals/userSession_test.go @@ -1,3 +1,9 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2018 Privategrity Corporation / +// / +// All rights reserved. / +//////////////////////////////////////////////////////////////////////////////// + package globals import ( diff --git a/globals/user_test.go b/globals/user_test.go index 2eacf49a7..88cb44f68 100644 --- a/globals/user_test.go +++ b/globals/user_test.go @@ -1,3 +1,9 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2018 Privategrity Corporation / +// / +// All rights reserved. / +//////////////////////////////////////////////////////////////////////////////// + package globals import ( diff --git a/io/pollingReception.go b/io/pollingReception.go index d3858f594..c20923d97 100644 --- a/io/pollingReception.go +++ b/io/pollingReception.go @@ -1,3 +1,9 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2018 Privategrity Corporation / +// / +// All rights reserved. / +//////////////////////////////////////////////////////////////////////////////// + package io import ( diff --git a/io/transmitMessage.go b/io/transmitMessage.go index 4d3fa2287..3d6ae449b 100644 --- a/io/transmitMessage.go +++ b/io/transmitMessage.go @@ -1,3 +1,9 @@ +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2018 Privategrity Corporation / +// / +// All rights reserved. / +//////////////////////////////////////////////////////////////////////////////// + package io import ( diff --git a/main.go b/main.go index c8a942fc9..48d8c1d58 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,8 @@ -// Copyright © 2018 Privategrity Corporation -// -// All rights reserved. +//////////////////////////////////////////////////////////////////////////////// +// Copyright © 2018 Privategrity Corporation / +// / +// All rights reserved. / +//////////////////////////////////////////////////////////////////////////////// package main @@ -9,4 +11,4 @@ import "gitlab.com/privategrity/client/cmd" // main needs no introduction. func main() { cmd.Execute() -} \ No newline at end of file +} -- GitLab