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
/*
config.go
Copyright 2025 Sharkk, sharkk.net
Authors: Sky Johnson
*/
import (
"fmt"
"io"

View File

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

View File

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

View File

@ -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