12 lines
192 B
Go
12 lines
192 B
Go
|
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
|
||
|
}
|