From d8841c44d6a23917ddab90f079e272a04b0f52f0 Mon Sep 17 00:00:00 2001 From: David May <1301201+wass3r@users.noreply.github.com> Date: Thu, 5 Jan 2023 23:19:32 -0600 Subject: [PATCH] chore(copyright): update copyright year (#408) --- LICENSE | 2 +- cmd/flottbot/main.go | 2 +- config-example/scripts/main.go | 2 +- core/configure.go | 2 +- core/configure_test.go | 2 +- core/matcher.go | 2 +- core/matcher_test.go | 2 +- core/outputs.go | 2 +- core/prommetric.go | 2 +- core/remotes.go | 2 +- core/rules.go | 2 +- handlers/http.go | 2 +- handlers/http_test.go | 2 +- handlers/script.go | 2 +- handlers/script_test.go | 2 +- models/action.go | 2 +- models/bot.go | 2 +- models/http.go | 2 +- models/message.go | 2 +- models/remotes.go | 2 +- models/rule.go | 2 +- models/script.go | 2 +- remote/cli/remote.go | 2 +- remote/context.go | 2 +- remote/discord/helper.go | 2 +- remote/discord/remote.go | 2 +- remote/discord/util.go | 2 +- remote/gchat/configure.go | 2 +- remote/gchat/helper.go | 2 +- remote/gchat/remote.go | 2 +- remote/gchat/util.go | 2 +- remote/remote.go | 2 +- remote/scheduler/remote.go | 2 +- remote/slack/helper.go | 2 +- remote/slack/remote.go | 2 +- remote/slack/util.go | 2 +- remote/telegram/remote.go | 2 +- remote/telegram/util.go | 2 +- utils/access_check.go | 2 +- utils/access_check_test.go | 2 +- utils/is_set.go | 2 +- utils/is_set_test.go | 2 +- utils/json.go | 2 +- utils/json_test.go | 2 +- utils/parse.go | 2 +- utils/parse_test.go | 2 +- utils/rooms.go | 2 +- utils/rooms_test.go | 2 +- version/version.go | 2 +- version/version_test.go | 2 +- 50 files changed, 50 insertions(+), 50 deletions(-) diff --git a/LICENSE b/LICENSE index 4ec280e1..33645305 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright (c) 2022 Target Brands, Inc. + Copyright (c) 2023 Target Brands, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/cmd/flottbot/main.go b/cmd/flottbot/main.go index 8fec5e16..1766b49d 100644 --- a/cmd/flottbot/main.go +++ b/cmd/flottbot/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/config-example/scripts/main.go b/config-example/scripts/main.go index b3b019ad..08a4367d 100644 --- a/config-example/scripts/main.go +++ b/config-example/scripts/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/core/configure.go b/core/configure.go index 7c3a65d6..c1ca3077 100644 --- a/core/configure.go +++ b/core/configure.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/core/configure_test.go b/core/configure_test.go index 9450a4e5..1deaec2c 100644 --- a/core/configure_test.go +++ b/core/configure_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/core/matcher.go b/core/matcher.go index b799dc6d..acc01cbf 100644 --- a/core/matcher.go +++ b/core/matcher.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/core/matcher_test.go b/core/matcher_test.go index 2baf3459..59456042 100644 --- a/core/matcher_test.go +++ b/core/matcher_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/core/outputs.go b/core/outputs.go index 81c39608..1c1f2d15 100644 --- a/core/outputs.go +++ b/core/outputs.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/core/prommetric.go b/core/prommetric.go index fabf69c1..14126258 100644 --- a/core/prommetric.go +++ b/core/prommetric.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/core/remotes.go b/core/remotes.go index bb999017..0858291f 100644 --- a/core/remotes.go +++ b/core/remotes.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/core/rules.go b/core/rules.go index 47ab4ca0..3765a8d5 100644 --- a/core/rules.go +++ b/core/rules.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/handlers/http.go b/handlers/http.go index 5cb82fe1..99ddc4bd 100644 --- a/handlers/http.go +++ b/handlers/http.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/handlers/http_test.go b/handlers/http_test.go index 10b1398b..24661972 100644 --- a/handlers/http_test.go +++ b/handlers/http_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/handlers/script.go b/handlers/script.go index bb2f175c..d2a3f7a3 100644 --- a/handlers/script.go +++ b/handlers/script.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/handlers/script_test.go b/handlers/script_test.go index 72385c58..97adc6d3 100644 --- a/handlers/script_test.go +++ b/handlers/script_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/models/action.go b/models/action.go index 21f04b92..11910ba5 100644 --- a/models/action.go +++ b/models/action.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/models/bot.go b/models/bot.go index 288c8e5b..e82d0c75 100644 --- a/models/bot.go +++ b/models/bot.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/models/http.go b/models/http.go index e867c8ac..c6f5736a 100644 --- a/models/http.go +++ b/models/http.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/models/message.go b/models/message.go index c75eef8e..975bb9b3 100644 --- a/models/message.go +++ b/models/message.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/models/remotes.go b/models/remotes.go index 42c46d86..51f9f725 100644 --- a/models/remotes.go +++ b/models/remotes.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/models/rule.go b/models/rule.go index f67bd737..e8eded90 100644 --- a/models/rule.go +++ b/models/rule.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/models/script.go b/models/script.go index db740113..58955cd6 100644 --- a/models/script.go +++ b/models/script.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/cli/remote.go b/remote/cli/remote.go index d635e68b..556db7e6 100644 --- a/remote/cli/remote.go +++ b/remote/cli/remote.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/context.go b/remote/context.go index c97d0431..15cd9a55 100644 --- a/remote/context.go +++ b/remote/context.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/discord/helper.go b/remote/discord/helper.go index 1557f56d..1c255041 100644 --- a/remote/discord/helper.go +++ b/remote/discord/helper.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/discord/remote.go b/remote/discord/remote.go index cf379492..6124fbcf 100644 --- a/remote/discord/remote.go +++ b/remote/discord/remote.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/discord/util.go b/remote/discord/util.go index 01f34420..1d19f258 100644 --- a/remote/discord/util.go +++ b/remote/discord/util.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/gchat/configure.go b/remote/gchat/configure.go index 18d25bd4..9de97342 100644 --- a/remote/gchat/configure.go +++ b/remote/gchat/configure.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/gchat/helper.go b/remote/gchat/helper.go index e5e87891..85786279 100644 --- a/remote/gchat/helper.go +++ b/remote/gchat/helper.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/gchat/remote.go b/remote/gchat/remote.go index 532b56ba..d8113008 100644 --- a/remote/gchat/remote.go +++ b/remote/gchat/remote.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/gchat/util.go b/remote/gchat/util.go index 1947e1ce..6ca4a47d 100644 --- a/remote/gchat/util.go +++ b/remote/gchat/util.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/remote.go b/remote/remote.go index 81942917..5977b3ce 100644 --- a/remote/remote.go +++ b/remote/remote.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/scheduler/remote.go b/remote/scheduler/remote.go index f332605e..3cf5bb6c 100644 --- a/remote/scheduler/remote.go +++ b/remote/scheduler/remote.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/slack/helper.go b/remote/slack/helper.go index 994821a9..d3f1cd10 100644 --- a/remote/slack/helper.go +++ b/remote/slack/helper.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/slack/remote.go b/remote/slack/remote.go index 9f1e0b5f..3a08b914 100644 --- a/remote/slack/remote.go +++ b/remote/slack/remote.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/slack/util.go b/remote/slack/util.go index 36142549..65a4445c 100644 --- a/remote/slack/util.go +++ b/remote/slack/util.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/telegram/remote.go b/remote/telegram/remote.go index c8752625..7995c5a7 100644 --- a/remote/telegram/remote.go +++ b/remote/telegram/remote.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/remote/telegram/util.go b/remote/telegram/util.go index bbf3a468..61e03c59 100644 --- a/remote/telegram/util.go +++ b/remote/telegram/util.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/utils/access_check.go b/utils/access_check.go index 3853db89..a1b14c1b 100644 --- a/utils/access_check.go +++ b/utils/access_check.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/utils/access_check_test.go b/utils/access_check_test.go index 88645bf6..ccd3e7da 100644 --- a/utils/access_check_test.go +++ b/utils/access_check_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/utils/is_set.go b/utils/is_set.go index 3f55c70c..b9b2d4a6 100644 --- a/utils/is_set.go +++ b/utils/is_set.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/utils/is_set_test.go b/utils/is_set_test.go index e2489b85..439ad3e1 100644 --- a/utils/is_set_test.go +++ b/utils/is_set_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/utils/json.go b/utils/json.go index 3ef2f5aa..47840cae 100644 --- a/utils/json.go +++ b/utils/json.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/utils/json_test.go b/utils/json_test.go index 67d1ff0b..ff1b1baf 100644 --- a/utils/json_test.go +++ b/utils/json_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/utils/parse.go b/utils/parse.go index 34294440..ad91453e 100644 --- a/utils/parse.go +++ b/utils/parse.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/utils/parse_test.go b/utils/parse_test.go index a13f2c28..c6f3231a 100644 --- a/utils/parse_test.go +++ b/utils/parse_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/utils/rooms.go b/utils/rooms.go index db91d398..a805cccb 100644 --- a/utils/rooms.go +++ b/utils/rooms.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/utils/rooms_test.go b/utils/rooms_test.go index c115b5ce..4db90351 100644 --- a/utils/rooms_test.go +++ b/utils/rooms_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/version/version.go b/version/version.go index 16dcc663..54607912 100644 --- a/version/version.go +++ b/version/version.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository. diff --git a/version/version_test.go b/version/version_test.go index cc96c479..53f7444c 100644 --- a/version/version_test.go +++ b/version/version_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Target Brands, Inc. All rights reserved. +// Copyright (c) 2023 Target Brands, Inc. All rights reserved. // // Use of this source code is governed by the LICENSE file in this repository.