summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-25 17:08:27 +0200
committerPaul Buetow <paul@buetow.org>2026-03-25 17:08:27 +0200
commit419908214cc2777bdcade3155bd52085412eeb81 (patch)
treed4b2b56ed1b3d858dd6574990509bfadb48cac83
parentcdc9a632a16a950aae23b1d89641d8641f654f36 (diff)
docs: Add SPDX license headers to remaining .go files
- Added SPDX header to cmd/gt/cli_test.go - Added SPDX header to internal/rpn/boolean_test.go All 27 .go source files now have SPDX license headers with MIT license and copyright notice for Paul Buetow (c) 2026.
-rw-r--r--cmd/gt/cli_test.go3
-rw-r--r--internal/rpn/boolean_test.go3
2 files changed, 6 insertions, 0 deletions
diff --git a/cmd/gt/cli_test.go b/cmd/gt/cli_test.go
index b502fd6..9639151 100644
--- a/cmd/gt/cli_test.go
+++ b/cmd/gt/cli_test.go
@@ -1,3 +1,6 @@
+// SPDX-License-Identifier: MIT
+// Copyright (c) 2026 Paul Buetow
+
package main
import (
diff --git a/internal/rpn/boolean_test.go b/internal/rpn/boolean_test.go
index f748cc9..02c5a16 100644
--- a/internal/rpn/boolean_test.go
+++ b/internal/rpn/boolean_test.go
@@ -1,3 +1,6 @@
+// SPDX-License-Identifier: MIT
+// Copyright (c) 2026 Paul Buetow
+
package rpn
import (