lurch-dl/core/interface.go

9 lines
214 B
Go
Raw Normal View History

2025-03-08 21:09:32 +01:00
package core
type UserInterface interface {
DownloadProgress(progress float32, rate float64, delaying bool, waiting bool, retries int, title string)
InfoMessage(msg string)
ErrorMessage(err error)
Aborted()
}