diff options
Diffstat (limited to 'file.go')
-rw-r--r-- | file.go | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -11,15 +11,15 @@ import ( // xlsx := CreateFile() func CreateFile() *File { file := make(map[string]string) - file[`_rels/.rels`] = templateRels - file[`docProps/app.xml`] = templateDocpropsApp - file[`docProps/core.xml`] = templateDocpropsCore - file[`xl/_rels/workbook.xml.rels`] = templateWorkbookRels - file[`xl/theme/theme1.xml`] = templateTheme - file[`xl/worksheets/sheet1.xml`] = templateSheet - file[`xl/styles.xml`] = templateStyles - file[`xl/workbook.xml`] = templateWorkbook - file[`[Content_Types].xml`] = templateContentTypes + file["_rels/.rels"] = templateRels + file["docProps/app.xml"] = templateDocpropsApp + file["docProps/core.xml"] = templateDocpropsCore + file["xl/_rels/workbook.xml.rels"] = templateWorkbookRels + file["xl/theme/theme1.xml"] = templateTheme + file["xl/worksheets/sheet1.xml"] = templateSheet + file["xl/styles.xml"] = templateStyles + file["xl/workbook.xml"] = templateWorkbook + file["[Content_Types].xml"] = templateContentTypes return &File{ XLSX: file, } |