101577f163
- Updated import paths in multiple service files to reflect the new agent-desk module. - Added a new configuration file for agent-desk in the Docker setup.
24 lines
375 B
Go
24 lines
375 B
Go
package storage
|
|
|
|
import (
|
|
"agent-desk/internal/pkg/dto"
|
|
"agent-desk/internal/pkg/enums"
|
|
)
|
|
|
|
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
|
|
}
|