mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-26 00:32:37 +02:00
21 lines
359 B
Go
21 lines
359 B
Go
package templates
|
|
|
|
import _ "embed"
|
|
|
|
var (
|
|
//go:embed "epub_templates_container.xml.tmpl"
|
|
Container string
|
|
|
|
//go:embed "epub_templates_applebooks.xml.tmpl"
|
|
AppleBooks string
|
|
|
|
//go:embed "epub_templates_style.css.tmpl"
|
|
Style string
|
|
|
|
//go:embed "epub_templates_text.xhtml.tmpl"
|
|
Text string
|
|
|
|
//go:embed "epub_templates_blank.xhtml.tmpl"
|
|
Blank string
|
|
)
|