Files
katenary/generator/extrafiles/notes.go

12 lines
192 B
Go
Raw Normal View History

package extrafiles
import _ "embed"
//go:embed notes.tpl
var notesTemplate string
// NoteTXTFile returns the content of the note.txt file.
func NotesFile() string {
return notesTemplate
}