NCBACK-34 add logic to find similar image in db
Test Workflow / test (push) Successful in 3s

This commit is contained in:
vladp
2026-01-13 22:40:52 +07:00
parent 344ec075d4
commit 8ac73ff045
18 changed files with 394 additions and 188 deletions
@@ -0,0 +1,7 @@
package ru.soune.nocopy.exception;
public class DuplicateImageException extends RuntimeException {
public DuplicateImageException(String message) {
super(message);
}
}