Files
transcriber/internal/entity/file.go

19 lines
205 B
Go

package entity
import (
"time"
)
const (
StorageLocal = "local"
StorageS3 = "s3"
)
type File struct {
Id string
Storage string
FileName string
Size int64
CreatedAt time.Time
}