Commit all code. Should be mostly functional.

This commit is contained in:
2024-12-31 03:38:40 -07:00
commit b4e9727e8c
15 changed files with 622 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
package comicinfo
import "encoding/xml"
type ComicInfo struct {
XMLName xml.Name `xml:"ComicInfo"`
XmlnsXsd string `xml:"xmlns:xsd,attr"`
XmlnsXsi string `xml:"xmlns:xsi,attr"`
Title string `xml:"Title"`
Summary string `xml:"Summary"`
Writer string `xml:"Writer"`
Publisher string `xml:"Publisher"`
Imprint string `xml:"Imprint"`
Tags string `xml:"Tags"`
PageCount int `xml:"PageCount"`
Manga string `xml:"Manga"`
AgeRating string `xml:"AgeRating"`
}