Renamed ImportBackend methods to StartImport / FinishImport

This commit is contained in:
Philipp Wolfer 2023-11-20 07:43:54 +01:00
parent 14d944c7ad
commit c13c9175e3
No known key found for this signature in database
GPG key ID: 8FDF744D4919943B
7 changed files with 16 additions and 16 deletions

View file

@ -45,8 +45,8 @@ func (b *MalojaApiBackend) FromConfig(config *viper.Viper) models.Backend {
return b
}
func (b *MalojaApiBackend) Init() error { return nil }
func (b *MalojaApiBackend) Finish() error { return nil }
func (b *MalojaApiBackend) StartImport() error { return nil }
func (b *MalojaApiBackend) FinishImport() error { return nil }
func (b *MalojaApiBackend) ExportListens(oldestTimestamp time.Time, results chan models.ListensResult, progress chan models.Progress) {
page := 0