Files
lenz-web/xmlparsing/item.go
Simon Martens 4f4288905d Restart Init
2026-02-18 13:41:44 +01:00

8 lines
189 B
Go

package xmlparsing
// 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
}