2026-04-09 10:01:23 +08:00
|
|
|
package storage
|
|
|
|
|
|
|
|
|
|
import (
|
2026-05-31 18:43:48 +08:00
|
|
|
"agent-desk/internal/pkg/dto"
|
|
|
|
|
"agent-desk/internal/pkg/enums"
|
2026-04-09 10:01:23 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type UploadInfo struct {
|
|
|
|
|
Prefix string
|
|
|
|
|
Filename string
|
|
|
|
|
FileSize int64
|
|
|
|
|
MimeType string
|
|
|
|
|
Principal *dto.AuthPrincipal
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type StoredFile struct {
|
|
|
|
|
Provider enums.AssetProvider
|
|
|
|
|
StorageKey string
|
|
|
|
|
URL string
|
|
|
|
|
Filename string
|
|
|
|
|
FileSize int64
|
|
|
|
|
MimeType string
|
|
|
|
|
}
|