mirror of
				https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
				synced 2025-10-30 01:25:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			249 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			249 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package xmlprovider
 | |
| 
 | |
| 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
 | |
| }
 | 
