summaryrefslogtreecommitdiff
path: root/help/help.go
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-05-17 02:31:10 +0200
committerewy <ewy0@protonmail.com>2026-05-17 02:33:16 +0200
commit7585a488b7b1e1812f7ebf50107139e2fd65f035 (patch)
tree921dd87ca8b5583abe4ebfe1474e1b02fbb7365f /help/help.go
parent45d1755e9f28853186613e97b034c2020f9d98e4 (diff)
add handmade help pageHEADmaster
Diffstat (limited to 'help/help.go')
-rw-r--r--help/help.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/help/help.go b/help/help.go
new file mode 100644
index 0000000..c19ebeb
--- /dev/null
+++ b/help/help.go
@@ -0,0 +1,13 @@
+package help
+
+import (
+ _ "embed"
+ "github.com/ewy1/pik/spool"
+)
+
+//go:embed help.txt
+var content string
+
+func Echo() {
+ _, _ = spool.Print("%v", content)
+}