diff options
Diffstat (limited to 'local.go')
-rw-r--r-- | local.go | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -19,6 +19,7 @@ const qidPre = "queuePre" const qidWipe = "queueWipe" const qidOCR = "queueOCR" const qidAnalyse = "queueAnalyse" +const qidTest = "queueTest" const storageId = "storage" // LocalConn is a simple implementation of the pipeliner interface @@ -120,6 +121,10 @@ func (a *LocalConn) AnalyseQueueId() string { return qidAnalyse } +func (a *LocalConn) TestQueueId() string { + return qidTest +} + func (a *LocalConn) WIPStorageId() string { return storageId } |