Skip to content

Commit

Permalink
Added copyright header to the code. Fixes #112 (#114)
Browse files Browse the repository at this point in the history
# Describe Request

Added copyright header to the code. 

Fixes #112

# Change Type

Documentation change.
  • Loading branch information
cinar authored Jun 24, 2023
1 parent fbabb71 commit f76f14c
Show file tree
Hide file tree
Showing 59 changed files with 470 additions and 0 deletions.
8 changes: 8 additions & 0 deletions alphanumeric.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions alphanumeric_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker_test

import (
Expand Down
8 changes: 8 additions & 0 deletions ascii.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions ascii_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker_test

import (
Expand Down
6 changes: 6 additions & 0 deletions checker.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions checker_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions cidr.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions cidr_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker_test

import (
Expand Down
8 changes: 8 additions & 0 deletions credit_card.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions credit_card_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker_test

import (
Expand Down
8 changes: 8 additions & 0 deletions digits.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions digits_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker_test

import (
Expand Down
8 changes: 8 additions & 0 deletions email.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions email_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker_test

import (
Expand Down
8 changes: 8 additions & 0 deletions fqdn.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions fqdn_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker_test

import (
Expand Down
8 changes: 8 additions & 0 deletions header.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
8 changes: 8 additions & 0 deletions ip.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions ip_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker_test

import (
Expand Down
8 changes: 8 additions & 0 deletions ipv4.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions ipv4_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker_test

import (
Expand Down
8 changes: 8 additions & 0 deletions ipv6.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions ipv6_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker_test

import (
Expand Down
8 changes: 8 additions & 0 deletions isbn.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions isbn_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker_test

import (
Expand Down
8 changes: 8 additions & 0 deletions lower.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions lower_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker_test

import (
Expand Down
8 changes: 8 additions & 0 deletions luhn.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions luhn_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker_test

import (
Expand Down
8 changes: 8 additions & 0 deletions mac.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions mac_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker_test

import (
Expand Down
8 changes: 8 additions & 0 deletions max.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker

import (
Expand Down
8 changes: 8 additions & 0 deletions max_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// 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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
//
package checker_test

import (
Expand Down
Loading

0 comments on commit f76f14c

Please sign in to comment.