diff options
Diffstat (limited to '')
-rw-r--r-- | job/job.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/job/job.go b/job/job.go new file mode 100644 index 0000000..e15b2eb --- /dev/null +++ b/job/job.go @@ -0,0 +1,14 @@ +package job + +import "fmt" + +// Job is a bareos job +type Job struct { + Name string + Timestamp uint64 + Success bool +} + +func (job Job) String() string { + return fmt.Sprintf("Name: \"%s\", Timestamp: \"%d\", Success: \"%t\"", job.Name, job.Timestamp, job.Success) +} |