Files
lenz-web/xmlparsing/item.go
Simon Martens 9563145aeb Lots of stuff
2025-06-24 18:20:06 +02: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
}