mirror of
https://codeberg.org/scip/epuppy.git
synced 2025-12-16 12:01:00 +01:00
13 lines
288 B
Go
13 lines
288 B
Go
package epub
|
|
|
|
// Container META-INF/container.xml file
|
|
type Container struct {
|
|
Rootfile Rootfile `xml:"rootfiles>rootfile" json:"rootfile"`
|
|
}
|
|
|
|
// Rootfile root file
|
|
type Rootfile struct {
|
|
Path string `xml:"full-path,attr" json:"path"`
|
|
Type string `xml:"media-type,attr" json:"type"`
|
|
}
|