mirror of
https://github.com/Theodor-Springmann-Stiftung/lenz-web.git
synced 2026-03-21 13:55:30 +00:00
8 lines
189 B
Go
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
|
|
}
|