diff options
author | Nick White <git@njw.name> | 2022-02-28 16:17:35 +0000 |
---|---|---|
committer | Nick White <git@njw.name> | 2022-02-28 16:17:35 +0000 |
commit | 21d49b546a27de6c53d8fe7d1a68d5a3b5506c93 (patch) | |
tree | 729663de5863c125fad24d37df5147c2569771d1 /local.go | |
parent | 54aca8994863f5c58bce0224bc943b81c60f5d04 (diff) |
Add PreNoWipe queue, that just does binarisation but no wiping
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 } |