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