8 lines
162 B
Go
8 lines
162 B
Go
package port
|
|
|
|
import "context"
|
|
|
|
type FileDownloader interface {
|
|
Download(ctx context.Context, fileID string) ([]byte, string, error) // bytes, mimeType, error
|
|
}
|