1
0
mirror of https://github.com/fumiama/go-docx.git synced 2026-06-19 09:00:31 +08:00

feat: embed template xmls

This commit is contained in:
源文雨
2023-02-09 14:05:31 +08:00
parent 20d91d61a4
commit 2d8e706815
17 changed files with 481 additions and 429 deletions

9
files.go Normal file
View File

@@ -0,0 +1,9 @@
package docxlib
import "embed"
var (
//go:embed xml
//go:embed xml/_rels/*
TEMP_XML_FS embed.FS
)