mirror of
https://github.com/fumiama/go-docx.git
synced 2026-06-05 07:40:24 +08:00
11 lines
153 B
Go
11 lines
153 B
Go
package docxlib
|
|
|
|
import "embed"
|
|
|
|
var (
|
|
// TemplateXMLFS stores template docx files
|
|
//go:embed xml
|
|
//go:embed xml/a4/_rels/*
|
|
TemplateXMLFS embed.FS
|
|
)
|