summaryrefslogtreecommitdiff
path: root/file.go
diff options
context:
space:
mode:
Diffstat (limited to 'file.go')
-rw-r--r--file.go18
1 files changed, 9 insertions, 9 deletions
diff --git a/file.go b/file.go
index 979f5e1..654fe59 100644
--- a/file.go
+++ b/file.go
@@ -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,
}