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

make lint happy

This commit is contained in:
源文雨
2023-02-23 15:22:56 +08:00
parent 958a125885
commit b9c9164250
14 changed files with 76 additions and 38 deletions

View File

@@ -12,14 +12,15 @@ import (
// Docx is the structure that allow to access the internal represntation
// in memory of the doc (either read or about to be written)
type Docx struct {
Document Document
DocRelation Relationships
Document Document // Document is word/document.xml
docRelation Relationships // docRelation is word/_rels/document.xml.rels
media []Media
mediaNameIdx map[string]int
rId uintptr
imageId uintptr
rID uintptr
imageID uintptr
template string
tmplfs fs.FS