diff options
Diffstat (limited to 'local.go')
-rw-r--r-- | local.go | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -16,6 +16,7 @@ import ( ) const qidPre = "queuePre" +const qidPreNoWipe = "queuePreNoWipe" const qidWipe = "queueWipe" const qidOCR = "queueOCR" const qidAnalyse = "queueAnalyse" @@ -114,6 +115,10 @@ func (a *LocalConn) PreQueueId() string { return qidPre } +func (a *LocalConn) PreNoWipeQueueId() string { + return qidPreNoWipe +} + func (a *LocalConn) WipeQueueId() string { return qidWipe } |