mirror of
https://codeberg.org/scip/epuppy.git
synced 2025-12-17 12:31:02 +01:00
13 lines
286 B
Go
13 lines
286 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"`
|
||
|
|
}
|