Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Task ¶
type Task struct { // Name is the name of the task. Name string // Message is a human readable description of the task operations or result. Message string // Outcome indicates the completion state of the task. Outcome enums.PreprocessingTaskOutcome // StartedAt is the timestamp of the task initiation. StartedAt time.Time // StartedAt is the timestamp of the task completion. CompletedAt time.Time }
type WorkflowParams ¶
type WorkflowParams struct { // Relative path to the shared path. RelativePath string }
type WorkflowResult ¶
type WorkflowResult struct { // Outcome is an integer indicating if the workflow completed successfully, // or with errors. Outcome Outcome // Relative path to the shared path. RelativePath string // PreservationTasks is a log of the preservation tasks performed by // preprocessing. PreservationTasks []Task }
Click to show internal directories.
Click to hide internal directories.