Files
gateway-telegram/internal/domain/port/file_downloader.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
}