Files
lenz-web/xml/item.go
Simon Martens e19fd47c17 Init
2025-03-05 16:41:39 +01:00

13 lines
248 B
Go

package xmlparsing
type ItemInfo struct {
Source string
Parse ParseMeta
}
// INFO: These are just root elements that hold the data of the XML files.
// They get discarded after a parse.
type XMLRootElement[T any] interface {
Children() []T
}