From 04635fcca1c34a0d39a17f2a38f8997086b3af9a Mon Sep 17 00:00:00 2001 From: Onur Cinar Date: Tue, 29 Oct 2024 19:43:20 -0700 Subject: [PATCH] Copyright message is added to all source files. (#123) # Describe Request Copyright message is added to all source files. # Change Type Code maintenance. --- alphanumeric.go | 5 +++++ alphanumeric_test.go | 5 +++++ ascii.go | 5 +++++ ascii_test.go | 5 +++++ checker.go | 5 ++--- checker_test.go | 5 +++++ cidr.go | 5 +++++ cidr_test.go | 5 +++++ credit_card.go | 5 +++++ credit_card_test.go | 5 +++++ digits.go | 5 +++++ digits_test.go | 5 +++++ email.go | 5 +++++ email_test.go | 5 +++++ fqdn.go | 5 +++++ fqdn_test.go | 5 +++++ html_escape.go | 5 +++++ html_escape_test.go | 5 +++++ html_unescape.go | 5 +++++ html_unescape_test.go | 5 +++++ ip.go | 5 +++++ ip_test.go | 5 +++++ ipv4.go | 5 +++++ ipv4_test.go | 5 +++++ ipv6.go | 5 +++++ ipv6_test.go | 5 +++++ isbn.go | 5 +++++ isbn_test.go | 5 +++++ lower.go | 5 +++++ lower_test.go | 5 +++++ luhn.go | 5 +++++ luhn_test.go | 5 +++++ mac.go | 5 +++++ mac_test.go | 5 +++++ max.go | 5 +++++ max_test.go | 5 +++++ maxlength.go | 5 +++++ maxlength_test.go | 5 +++++ min.go | 5 +++++ min_test.go | 5 +++++ minlenght.go | 5 +++++ minlength_test.go | 5 +++++ regexp.go | 5 +++++ regexp_test.go | 5 +++++ required.go | 5 +++++ required_test.go | 5 +++++ same.go | 5 +++++ same_test.go | 5 +++++ test_helper.go | 5 +++++ test_helper_test.go | 5 +++++ title.go | 5 +++++ title_test.go | 5 +++++ trim.go | 5 +++++ trim_left.go | 5 +++++ trim_left_test.go | 5 +++++ trim_right.go | 5 +++++ trim_right_test.go | 5 +++++ trim_test.go | 5 +++++ upper.go | 5 +++++ upper_test.go | 5 +++++ url.go | 5 +++++ url_escape.go | 5 +++++ url_escape_test.go | 5 +++++ url_test.go | 5 +++++ url_unescape.go | 5 +++++ url_unescape_test.go | 5 +++++ 66 files changed, 327 insertions(+), 3 deletions(-) diff --git a/alphanumeric.go b/alphanumeric.go index bea70d4..9ef41c9 100644 --- a/alphanumeric.go +++ b/alphanumeric.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/alphanumeric_test.go b/alphanumeric_test.go index 00d2107..9e92fa7 100644 --- a/alphanumeric_test.go +++ b/alphanumeric_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/ascii.go b/ascii.go index e06c171..452b075 100644 --- a/ascii.go +++ b/ascii.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/ascii_test.go b/ascii_test.go index d170b87..fa2f5e4 100644 --- a/ascii_test.go +++ b/ascii_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/checker.go b/checker.go index 0865ac2..4e4436f 100644 --- a/checker.go +++ b/checker.go @@ -1,10 +1,9 @@ // Package checker is a Go library for validating user input through struct tags. // -// https://github.com/cinar/checker -// -// Copyright 2023 Onur Cinar. All rights reserved. +// Copyright (c) 2023-2024 Onur Cinar. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. +// https://github.com/cinar/checker package checker import ( diff --git a/checker_test.go b/checker_test.go index 7d85815..1a39146 100644 --- a/checker_test.go +++ b/checker_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/cidr.go b/cidr.go index 8490dc9..4276a8a 100644 --- a/cidr.go +++ b/cidr.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/cidr_test.go b/cidr_test.go index 7b84ad7..47cddc9 100644 --- a/cidr_test.go +++ b/cidr_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/credit_card.go b/credit_card.go index a904ad2..5a4f464 100644 --- a/credit_card.go +++ b/credit_card.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/credit_card_test.go b/credit_card_test.go index f26e544..ad2898d 100644 --- a/credit_card_test.go +++ b/credit_card_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/digits.go b/digits.go index ee16598..3ace687 100644 --- a/digits.go +++ b/digits.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/digits_test.go b/digits_test.go index f685d5e..40c8f02 100644 --- a/digits_test.go +++ b/digits_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/email.go b/email.go index 7a9588d..6238bcf 100644 --- a/email.go +++ b/email.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/email_test.go b/email_test.go index 67dd96e..4460f7b 100644 --- a/email_test.go +++ b/email_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/fqdn.go b/fqdn.go index 4ba200e..002ce19 100644 --- a/fqdn.go +++ b/fqdn.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/fqdn_test.go b/fqdn_test.go index e417e01..4e822f0 100644 --- a/fqdn_test.go +++ b/fqdn_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/html_escape.go b/html_escape.go index ed540ad..2701f56 100644 --- a/html_escape.go +++ b/html_escape.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/html_escape_test.go b/html_escape_test.go index 3ce5ba5..799eba4 100644 --- a/html_escape_test.go +++ b/html_escape_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/html_unescape.go b/html_unescape.go index f348805..f202ae1 100644 --- a/html_unescape.go +++ b/html_unescape.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/html_unescape_test.go b/html_unescape_test.go index a459736..f6f333c 100644 --- a/html_unescape_test.go +++ b/html_unescape_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/ip.go b/ip.go index aacef03..a113269 100644 --- a/ip.go +++ b/ip.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/ip_test.go b/ip_test.go index f2fcfb3..a09bc28 100644 --- a/ip_test.go +++ b/ip_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/ipv4.go b/ipv4.go index 54ca08c..68225fc 100644 --- a/ipv4.go +++ b/ipv4.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/ipv4_test.go b/ipv4_test.go index 234d8b1..f38f542 100644 --- a/ipv4_test.go +++ b/ipv4_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/ipv6.go b/ipv6.go index 10edf45..da6ba34 100644 --- a/ipv6.go +++ b/ipv6.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/ipv6_test.go b/ipv6_test.go index 7d60316..68d9e95 100644 --- a/ipv6_test.go +++ b/ipv6_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/isbn.go b/isbn.go index 11e50db..3b4d4d6 100644 --- a/isbn.go +++ b/isbn.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/isbn_test.go b/isbn_test.go index 2e2f132..d8fe4be 100644 --- a/isbn_test.go +++ b/isbn_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/lower.go b/lower.go index 1a8d99b..6cf6987 100644 --- a/lower.go +++ b/lower.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/lower_test.go b/lower_test.go index 8b68d46..e5f660c 100644 --- a/lower_test.go +++ b/lower_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/luhn.go b/luhn.go index ef12591..4f8808a 100644 --- a/luhn.go +++ b/luhn.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/luhn_test.go b/luhn_test.go index 71f806c..bdd06a5 100644 --- a/luhn_test.go +++ b/luhn_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/mac.go b/mac.go index 56a20c2..7c6fbf2 100644 --- a/mac.go +++ b/mac.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/mac_test.go b/mac_test.go index d8aed1a..79f9729 100644 --- a/mac_test.go +++ b/mac_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/max.go b/max.go index 4583ae3..04a028e 100644 --- a/max.go +++ b/max.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/max_test.go b/max_test.go index 0826ef3..144246f 100644 --- a/max_test.go +++ b/max_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/maxlength.go b/maxlength.go index 44e28ef..910e9f4 100644 --- a/maxlength.go +++ b/maxlength.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/maxlength_test.go b/maxlength_test.go index b76f5a3..5322cfc 100644 --- a/maxlength_test.go +++ b/maxlength_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/min.go b/min.go index 15ea1bd..dcab579 100644 --- a/min.go +++ b/min.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/min_test.go b/min_test.go index 8b1cad9..b518e3c 100644 --- a/min_test.go +++ b/min_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/minlenght.go b/minlenght.go index 15f57c0..376444d 100644 --- a/minlenght.go +++ b/minlenght.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/minlength_test.go b/minlength_test.go index 00cac55..2a95559 100644 --- a/minlength_test.go +++ b/minlength_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/regexp.go b/regexp.go index 5142b53..f4e24ab 100644 --- a/regexp.go +++ b/regexp.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/regexp_test.go b/regexp_test.go index 99cee62..64a443a 100644 --- a/regexp_test.go +++ b/regexp_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/required.go b/required.go index 1f06c5f..bfc8c48 100644 --- a/required.go +++ b/required.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import "reflect" diff --git a/required_test.go b/required_test.go index 0781377..27a43cc 100644 --- a/required_test.go +++ b/required_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/same.go b/same.go index b1c1057..1901041 100644 --- a/same.go +++ b/same.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/same_test.go b/same_test.go index 54e7f09..31e8181 100644 --- a/same_test.go +++ b/same_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/test_helper.go b/test_helper.go index ab3319f..ce78ede 100644 --- a/test_helper.go +++ b/test_helper.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import "testing" diff --git a/test_helper_test.go b/test_helper_test.go index a093409..94ca47f 100644 --- a/test_helper_test.go +++ b/test_helper_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/title.go b/title.go index 68d9944..9a75bac 100644 --- a/title.go +++ b/title.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/title_test.go b/title_test.go index acad9d1..2a56175 100644 --- a/title_test.go +++ b/title_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/trim.go b/trim.go index b5b9f18..36638be 100644 --- a/trim.go +++ b/trim.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/trim_left.go b/trim_left.go index 04b7d87..a0aee1a 100644 --- a/trim_left.go +++ b/trim_left.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/trim_left_test.go b/trim_left_test.go index 181bdb1..bd21696 100644 --- a/trim_left_test.go +++ b/trim_left_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/trim_right.go b/trim_right.go index 6f0bb6c..2790c44 100644 --- a/trim_right.go +++ b/trim_right.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/trim_right_test.go b/trim_right_test.go index da3b114..6adb417 100644 --- a/trim_right_test.go +++ b/trim_right_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/trim_test.go b/trim_test.go index 2e58fb3..876370d 100644 --- a/trim_test.go +++ b/trim_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/upper.go b/upper.go index 85ce3f5..9b9de87 100644 --- a/upper.go +++ b/upper.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/upper_test.go b/upper_test.go index fedd20b..1d52cee 100644 --- a/upper_test.go +++ b/upper_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/url.go b/url.go index 1553d2a..a53d3ff 100644 --- a/url.go +++ b/url.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/url_escape.go b/url_escape.go index 7a0b1c0..a41784e 100644 --- a/url_escape.go +++ b/url_escape.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/url_escape_test.go b/url_escape_test.go index 2b7cd6d..a28ec11 100644 --- a/url_escape_test.go +++ b/url_escape_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/url_test.go b/url_test.go index 644e183..ce97f90 100644 --- a/url_test.go +++ b/url_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import ( diff --git a/url_unescape.go b/url_unescape.go index 99859c0..a115689 100644 --- a/url_unescape.go +++ b/url_unescape.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker import ( diff --git a/url_unescape_test.go b/url_unescape_test.go index 19427a9..6c4995b 100644 --- a/url_unescape_test.go +++ b/url_unescape_test.go @@ -1,3 +1,8 @@ +// Copyright (c) 2023-2024 Onur Cinar. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. +// https://github.com/cinar/checker + package checker_test import (