Files
gateway-telegram/internal/domain/port/file_downloader.go
T
2026-04-16 19:39:02 +02:00

8 lines
162 B
Go

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