Import result can report total and processed items

This commit is contained in:
Philipp Wolfer 2023-11-12 18:40:45 +01:00
parent 516de905bd
commit ead323eaed
No known key found for this signature in database
GPG key ID: 8FDF744D4919943B
5 changed files with 14 additions and 7 deletions

View file

@ -48,6 +48,7 @@ type LovesImport interface {
}
type ImportResult struct {
Count int
TotalCount int
ImportCount int
LastTimestamp time.Time
}