Files
transcriber/internal/contract/contract.go

14 lines
238 B
Go

package contract
type ObjectStorage interface {
}
type YandexS3Uploader interface {
UploadFile(filePath, fileName string) error
FileUrl(fileName string) string
}
type AudioFileConverter interface {
Convert(src, dest string) error
}