From 21d49b546a27de6c53d8fe7d1a68d5a3b5506c93 Mon Sep 17 00:00:00 2001 From: Nick White Date: Mon, 28 Feb 2022 16:17:35 +0000 Subject: Add PreNoWipe queue, that just does binarisation but no wiping --- local.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'local.go') diff --git a/local.go b/local.go index 615f9a6..24c7562 100644 --- a/local.go +++ b/local.go @@ -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 } -- cgit v1.2.1-24-ge1ad