mirror of
				https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
				synced 2025-10-31 01:55:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			288 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			288 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package xmlprovider
 | |
| 
 | |
| type SerializedItem struct {
 | |
| 	Source string
 | |
| 	Date   string
 | |
| 	Commit string
 | |
| }
 | |
| 
 | |
| func (si SerializedItem) SetSource(s string) {
 | |
| 	si.Source = s
 | |
| }
 | |
| 
 | |
| func (si SerializedItem) SetDate(d string) {
 | |
| 	si.Date = d
 | |
| }
 | |
| 
 | |
| func (si SerializedItem) SetCommit(c string) {
 | |
| 	si.Commit = c
 | |
| }
 | 
