From e17f653a8026424afba7fd62a04c8eed393ce2e0 Mon Sep 17 00:00:00 2001 From: Onur Cinar Date: Sat, 24 Jun 2023 18:49:37 +0000 Subject: [PATCH] Add copyright to the source code. Fixes #112 --- alphanumeric.go | 6 ++++++ alphanumeric_test.go | 6 ++++++ ascii.go | 6 ++++++ ascii_test.go | 6 ++++++ checker.go | 5 +++++ checker_test.go | 6 ++++++ cidr.go | 6 ++++++ cidr_test.go | 6 ++++++ credit_card.go | 6 ++++++ credit_card_test.go | 6 ++++++ digits.go | 6 ++++++ digits_test.go | 6 ++++++ email.go | 6 ++++++ email_test.go | 6 ++++++ fqdn.go | 6 ++++++ fqdn_test.go | 6 ++++++ header.txt | 6 ++++++ ip.go | 6 ++++++ ip_test.go | 6 ++++++ ipv4.go | 6 ++++++ ipv4_test.go | 6 ++++++ ipv6.go | 6 ++++++ ipv6_test.go | 6 ++++++ isbn.go | 6 ++++++ isbn_test.go | 6 ++++++ lower.go | 6 ++++++ lower_test.go | 6 ++++++ luhn.go | 6 ++++++ luhn_test.go | 6 ++++++ mac.go | 6 ++++++ mac_test.go | 6 ++++++ max.go | 6 ++++++ max_test.go | 6 ++++++ maxlength.go | 6 ++++++ maxlength_test.go | 6 ++++++ min.go | 6 ++++++ min_test.go | 6 ++++++ minlenght.go | 6 ++++++ minlength_test.go | 6 ++++++ regexp.go | 6 ++++++ regexp_test.go | 6 ++++++ required.go | 6 ++++++ required_test.go | 6 ++++++ same.go | 6 ++++++ same_test.go | 6 ++++++ test_helper.go | 6 ++++++ test_helper_test.go | 6 ++++++ title.go | 6 ++++++ title_test.go | 6 ++++++ trim.go | 6 ++++++ trim_left.go | 6 ++++++ trim_left_test.go | 6 ++++++ trim_right.go | 6 ++++++ trim_right_test.go | 6 ++++++ trim_test.go | 6 ++++++ upper.go | 6 ++++++ upper_test.go | 6 ++++++ url.go | 6 ++++++ url_test.go | 6 ++++++ 59 files changed, 353 insertions(+) create mode 100644 header.txt diff --git a/alphanumeric.go b/alphanumeric.go index bea70d4..d46ab3d 100644 --- a/alphanumeric.go +++ b/alphanumeric.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/alphanumeric_test.go b/alphanumeric_test.go index dfba213..66427fe 100644 --- a/alphanumeric_test.go +++ b/alphanumeric_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/ascii.go b/ascii.go index e06c171..84c4230 100644 --- a/ascii.go +++ b/ascii.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/ascii_test.go b/ascii_test.go index 61b0433..d8f6565 100644 --- a/ascii_test.go +++ b/ascii_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/checker.go b/checker.go index fafa56c..22ac1c2 100644 --- a/checker.go +++ b/checker.go @@ -1,4 +1,9 @@ // Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/checker_test.go b/checker_test.go index 7d85815..87c12d3 100644 --- a/checker_test.go +++ b/checker_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/cidr.go b/cidr.go index 8490dc9..d1888c0 100644 --- a/cidr.go +++ b/cidr.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/cidr_test.go b/cidr_test.go index e93c564..6f7ae76 100644 --- a/cidr_test.go +++ b/cidr_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/credit_card.go b/credit_card.go index 4b5f453..f9c749c 100644 --- a/credit_card.go +++ b/credit_card.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/credit_card_test.go b/credit_card_test.go index d62e298..c1476eb 100644 --- a/credit_card_test.go +++ b/credit_card_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/digits.go b/digits.go index ee16598..de573fd 100644 --- a/digits.go +++ b/digits.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/digits_test.go b/digits_test.go index 3dfd694..52cedaa 100644 --- a/digits_test.go +++ b/digits_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/email.go b/email.go index 3856599..937cf14 100644 --- a/email.go +++ b/email.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/email_test.go b/email_test.go index e1afe8e..d4bd030 100644 --- a/email_test.go +++ b/email_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/fqdn.go b/fqdn.go index 4ba200e..136588e 100644 --- a/fqdn.go +++ b/fqdn.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/fqdn_test.go b/fqdn_test.go index fcf0a52..e39de02 100644 --- a/fqdn_test.go +++ b/fqdn_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/header.txt b/header.txt new file mode 100644 index 0000000..db7f1f5 --- /dev/null +++ b/header.txt @@ -0,0 +1,6 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker diff --git a/ip.go b/ip.go index aacef03..fad88a0 100644 --- a/ip.go +++ b/ip.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/ip_test.go b/ip_test.go index 5035125..58167a7 100644 --- a/ip_test.go +++ b/ip_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/ipv4.go b/ipv4.go index 54ca08c..88a9b06 100644 --- a/ipv4.go +++ b/ipv4.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/ipv4_test.go b/ipv4_test.go index 251a90a..68ce996 100644 --- a/ipv4_test.go +++ b/ipv4_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/ipv6.go b/ipv6.go index 10edf45..16ee12c 100644 --- a/ipv6.go +++ b/ipv6.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/ipv6_test.go b/ipv6_test.go index 9fccdca..bcfe03e 100644 --- a/ipv6_test.go +++ b/ipv6_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/isbn.go b/isbn.go index 11e50db..5e2d783 100644 --- a/isbn.go +++ b/isbn.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/isbn_test.go b/isbn_test.go index 60becc7..fcbf531 100644 --- a/isbn_test.go +++ b/isbn_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/lower.go b/lower.go index 1a8d99b..4a15faa 100644 --- a/lower.go +++ b/lower.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/lower_test.go b/lower_test.go index 8b68d46..f92f59e 100644 --- a/lower_test.go +++ b/lower_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/luhn.go b/luhn.go index ef12591..ef671e5 100644 --- a/luhn.go +++ b/luhn.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/luhn_test.go b/luhn_test.go index 646c248..58728cb 100644 --- a/luhn_test.go +++ b/luhn_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/mac.go b/mac.go index 56a20c2..d5ff1f0 100644 --- a/mac.go +++ b/mac.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/mac_test.go b/mac_test.go index 60f0cfd..8bdbe8d 100644 --- a/mac_test.go +++ b/mac_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/max.go b/max.go index 4583ae3..cfa150c 100644 --- a/max.go +++ b/max.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/max_test.go b/max_test.go index bc7833e..ff12860 100644 --- a/max_test.go +++ b/max_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/maxlength.go b/maxlength.go index 44e28ef..ed7ee3a 100644 --- a/maxlength.go +++ b/maxlength.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/maxlength_test.go b/maxlength_test.go index 551f12a..404e73a 100644 --- a/maxlength_test.go +++ b/maxlength_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/min.go b/min.go index 15ea1bd..028380e 100644 --- a/min.go +++ b/min.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/min_test.go b/min_test.go index 9f6738a..9ddaa89 100644 --- a/min_test.go +++ b/min_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/minlenght.go b/minlenght.go index 15f57c0..4226ab2 100644 --- a/minlenght.go +++ b/minlenght.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/minlength_test.go b/minlength_test.go index 7389700..1d90e8a 100644 --- a/minlength_test.go +++ b/minlength_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/regexp.go b/regexp.go index 5142b53..4f964d1 100644 --- a/regexp.go +++ b/regexp.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/regexp_test.go b/regexp_test.go index 99cee62..3305ed6 100644 --- a/regexp_test.go +++ b/regexp_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/required.go b/required.go index 1f06c5f..9dba807 100644 --- a/required.go +++ b/required.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import "reflect" diff --git a/required_test.go b/required_test.go index d25eafd..cf77503 100644 --- a/required_test.go +++ b/required_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/same.go b/same.go index b1c1057..f8de53c 100644 --- a/same.go +++ b/same.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/same_test.go b/same_test.go index 54e7f09..e8b3bb8 100644 --- a/same_test.go +++ b/same_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/test_helper.go b/test_helper.go index ab3319f..c6d2fce 100644 --- a/test_helper.go +++ b/test_helper.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import "testing" diff --git a/test_helper_test.go b/test_helper_test.go index a093409..f581482 100644 --- a/test_helper_test.go +++ b/test_helper_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/title.go b/title.go index 68d9944..e6b2521 100644 --- a/title.go +++ b/title.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/title_test.go b/title_test.go index acad9d1..61bb85c 100644 --- a/title_test.go +++ b/title_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/trim.go b/trim.go index b5b9f18..80e0f0c 100644 --- a/trim.go +++ b/trim.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/trim_left.go b/trim_left.go index 04b7d87..f624155 100644 --- a/trim_left.go +++ b/trim_left.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/trim_left_test.go b/trim_left_test.go index 181bdb1..0a1d4cd 100644 --- a/trim_left_test.go +++ b/trim_left_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/trim_right.go b/trim_right.go index 6f0bb6c..66d1560 100644 --- a/trim_right.go +++ b/trim_right.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/trim_right_test.go b/trim_right_test.go index da3b114..606c947 100644 --- a/trim_right_test.go +++ b/trim_right_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/trim_test.go b/trim_test.go index 2e58fb3..1066767 100644 --- a/trim_test.go +++ b/trim_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/upper.go b/upper.go index 85ce3f5..8ff9a24 100644 --- a/upper.go +++ b/upper.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/upper_test.go b/upper_test.go index fedd20b..4bd2a40 100644 --- a/upper_test.go +++ b/upper_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import ( diff --git a/url.go b/url.go index 1553d2a..e7d5641 100644 --- a/url.go +++ b/url.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker import ( diff --git a/url_test.go b/url_test.go index d501c18..db7e568 100644 --- a/url_test.go +++ b/url_test.go @@ -1,3 +1,9 @@ +// Package checker is a Go library for validating user input through struct tags. +// +// Copyright (c) 2023 Onur Cinar. All Rights Reserved. +// The source code is provided under MIT License. +// +// https://github.com/cinar/checker package checker_test import (