downloader/api/internal/core/services/download/service.go
2021-12-22 02:10:01 +01:00

10 lines
235 B
Go

package download
import "downloader/internal/core/entities"
type Service interface {
Schedule(link string) (*entities.Download, error)
Get(id string) (*entities.Download, error)
GetAll(active bool) ([]*entities.Download, error)
}