1 2 3 4 5 6 7 8 9 10 11 12 13
package help import ( _ "embed" "github.com/ewy1/pik/spool" ) //go:embed help.txt var content string func Echo() { _, _ = spool.Print("%v", content) }