add copyright to source

This commit is contained in:
Sky Johnson 2025-04-18 12:27:13 -05:00
parent a7805ba718
commit 9ea6685cbb
4 changed files with 24 additions and 0 deletions

View File

@ -1,5 +1,11 @@
package fin package fin
/*
config.go
Copyright 2025 Sharkk, sharkk.net
Authors: Sky Johnson
*/
import ( import (
"fmt" "fmt"
"io" "io"

View File

@ -1,5 +1,11 @@
package fin package fin
/*
pool.go
Copyright 2025 Sharkk, sharkk.net
Authors: Sky Johnson
*/
import ( import (
"sync" "sync"
) )

View File

@ -1,5 +1,11 @@
package fin package fin
/*
scanner.go
Copyright 2025 Sharkk, sharkk.net
Authors: Sky Johnson
*/
import ( import (
"bufio" "bufio"
"errors" "errors"

View File

@ -1,5 +1,11 @@
package fin package fin
/*
token.go
Copyright 2025 Sharkk, sharkk.net
Authors: Sky Johnson
*/
// TokenType represents the type of token // TokenType represents the type of token
type TokenType int type TokenType int