summaryrefslogtreecommitdiff
path: root/help/help.go
blob: c19ebeb424caba2387bcf521de5f8905d54cab73 (plain)
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)
}