summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Paul <n@nc0.fr>2023-05-31 00:27:36 +0200
committerNicolas Paul <n@nc0.fr>2023-05-31 00:27:36 +0200
commit2c359752da4bcdf4566e7d2986fb99d7e4de36f9 (patch)
tree73f2400a91d963ae6b46b92533f4709c5f25c9a4
parent0dee7eab679c96a97591788fc1bf5d291fa51303 (diff)
Move templates into pkg directory
Signed-off-by: Nicolas Paul <n@nc0.fr>
-rw-r--r--pkg/templates/templates.go (renamed from templates.go)2
-rw-r--r--pkg/templates/templates_test.go (renamed from templates_test.go)2
2 files changed, 2 insertions, 2 deletions
diff --git a/templates.go b/pkg/templates/templates.go
index 1024325..4e114c2 100644
--- a/templates.go
+++ b/pkg/templates/templates.go
@@ -1,4 +1,4 @@
-package main
+package templates
import (
"fmt"
diff --git a/templates_test.go b/pkg/templates/templates_test.go
index 680651f..fbd99f4 100644
--- a/templates_test.go
+++ b/pkg/templates/templates_test.go
@@ -1,4 +1,4 @@
-package main
+package templates
import (
"bytes"