Updated for go 1.16 modules
This commit is contained in:
parent
8278d7b471
commit
38d9c881b3
25 changed files with 25 additions and 19 deletions
14
pkg/job/job.go
Normal file
14
pkg/job/job.go
Normal 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)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue