11 lines
176 B
Go
11 lines
176 B
Go
package download
|
|
|
|
import (
|
|
"context"
|
|
"downloader/internal/core/entities"
|
|
)
|
|
|
|
type BackgroundService interface {
|
|
Run(ctx context.Context, download *entities.Download) error
|
|
}
|