1
0
Fork 0

Updated for go 1.16 modules

This commit is contained in:
Julien Dessaux 2021-04-23 16:51:22 +02:00
parent 8278d7b471
commit 38d9c881b3
25 changed files with 25 additions and 19 deletions

14
pkg/job/job.go Normal file
View file

@ -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("Job { Name: \"%s\", Timestamp: \"%d\", Success: \"%t\" }", job.Name, job.Timestamp, job.Success)
}