From 9ea6685cbb7025e250f478a6d35e1d30007120a5 Mon Sep 17 00:00:00 2001 From: Sky Johnson Date: Fri, 18 Apr 2025 12:27:13 -0500 Subject: [PATCH] add copyright to source --- config.go | 6 ++++++ pool.go | 6 ++++++ scanner.go | 6 ++++++ token.go | 6 ++++++ 4 files changed, 24 insertions(+) diff --git a/config.go b/config.go index 68ee934..49a2059 100644 --- a/config.go +++ b/config.go @@ -1,5 +1,11 @@ package fin +/* + config.go + Copyright 2025 Sharkk, sharkk.net + Authors: Sky Johnson +*/ + import ( "fmt" "io" diff --git a/pool.go b/pool.go index a39e659..67ff1b2 100644 --- a/pool.go +++ b/pool.go @@ -1,5 +1,11 @@ package fin +/* + pool.go + Copyright 2025 Sharkk, sharkk.net + Authors: Sky Johnson +*/ + import ( "sync" ) diff --git a/scanner.go b/scanner.go index e6f6e53..173e3cb 100644 --- a/scanner.go +++ b/scanner.go @@ -1,5 +1,11 @@ package fin +/* + scanner.go + Copyright 2025 Sharkk, sharkk.net + Authors: Sky Johnson +*/ + import ( "bufio" "errors" diff --git a/token.go b/token.go index 34de74e..95f0248 100644 --- a/token.go +++ b/token.go @@ -1,5 +1,11 @@ package fin +/* + token.go + Copyright 2025 Sharkk, sharkk.net + Authors: Sky Johnson +*/ + // TokenType represents the type of token type TokenType int