blob: cc607412f7485597120f3dd94111a52c10b85bef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package gendoc
import (
_ "embed" // for including embedded resources
)
var (
//go:embed resources/docbook.tmpl
docbookTmpl []byte
//go:embed resources/html.tmpl
htmlTmpl []byte
//go:embed resources/markdown.tmpl
markdownTmpl []byte
//go:embed resources/scalars.json
scalarsJSON []byte
)
|