Added functiontionality to cleanup XML cached collections

This commit is contained in:
Simon Martens
2024-12-02 10:19:18 +01:00
parent 7a6edbf668
commit e6b844cae1
12 changed files with 168 additions and 112 deletions

View File

@@ -1,19 +1,7 @@
package xmlprovider
type SerializedItem struct {
type ItemInfo 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
}