14 lines
594 B
Go
14 lines
594 B
Go
package adminjob
|
|
|
|
import "github.com/Silo-Server/silo-server/internal/catalogseed"
|
|
|
|
type CatalogImportRequest struct {
|
|
SourceBucket string `json:"source_bucket"`
|
|
SourceKey string `json:"source_key"`
|
|
SourceLabel string `json:"source_label,omitempty"`
|
|
CleanupSource bool `json:"cleanup_source,omitempty"`
|
|
LocalPath string `json:"local_path,omitempty"`
|
|
RemoteURL string `json:"remote_url,omitempty"`
|
|
Options catalogseed.ImportOptions `json:"options"`
|
|
}
|