diff options
author | Julien Dessaux | 2020-02-22 12:35:05 +0100 |
---|---|---|
committer | Julien Dessaux | 2020-02-22 12:56:29 +0100 |
commit | 2661ce9a2bda2b6c1efc0ba1fef873c9dc91bb7c (patch) | |
tree | 155f36ee7f62f972fc49e5df0440948a4ba0348c /spool/spool.go | |
parent | Added tests to the state package, and reworked the code around that (diff) | |
download | bareos-zabbix-check-2661ce9a2bda2b6c1efc0ba1fef873c9dc91bb7c.tar.gz bareos-zabbix-check-2661ce9a2bda2b6c1efc0ba1fef873c9dc91bb7c.tar.bz2 bareos-zabbix-check-2661ce9a2bda2b6c1efc0ba1fef873c9dc91bb7c.zip |
Added tests to the spool package, and reworked the code around that.
Diffstat (limited to '')
-rw-r--r-- | spool/spool.go | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/spool/spool.go b/spool/spool.go deleted file mode 100644 index e095979..0000000 --- a/spool/spool.go +++ /dev/null @@ -1,26 +0,0 @@ -package spool - -import ( - "bareos-zabbix-check/config" - "bareos-zabbix-check/job" -) - -const ( - spoolFile = "bareos-zabbix-check.spool" -) - -// Spool is an object for manipulating a bareos spool file -type Spool struct { - config *config.Config - jobs []job.Job -} - -// Jobs exports a spool to a jobs list -func (s *Spool) Jobs() []job.Job { - return s.jobs -} - -// SetJobs sets a jobs list -func (s *Spool) SetJobs(jobs []job.Job) { - s.jobs = jobs -} |