You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// Some code of this file reference tealeg/xlsx.
|
|
|
|
|
|
|
|
package excelize
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
|
|
|
)
|
|
|
|
|
|
|
|
type xlsxTypes struct {
|
|
|
|
XMLName xml.Name `xml:"http://schemas.openxmlformats.org/package/2006/content-types Types"`
|
|
|
|
Overrides []xlsxOverride `xml:"Override"`
|
|
|
|
Defaults []xlsxDefault `xml:"Default"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type xlsxOverride struct {
|
|
|
|
PartName string `xml:",attr"`
|
|
|
|
ContentType string `xml:",attr"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type xlsxDefault struct {
|
|
|
|
Extension string `xml:",attr"`
|
|
|
|
ContentType string `xml:",attr"`
|
|
|
|
}
|