From 6ea449bd83abca9e5c7653d263e2c17b23e993a8 Mon Sep 17 00:00:00 2001 From: laurenspriem Date: Mon, 24 Jun 2024 17:29:21 +0530 Subject: [PATCH] [mob][photos] Move ml exceptions --- .../lib/services/machine_learning/face_ml/face_ml_service.dart | 2 +- .../{face_ml/face_ml_exceptions.dart => ml_exceptions.dart} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename mobile/lib/services/machine_learning/{face_ml/face_ml_exceptions.dart => ml_exceptions.dart} (100%) diff --git a/mobile/lib/services/machine_learning/face_ml/face_ml_service.dart b/mobile/lib/services/machine_learning/face_ml/face_ml_service.dart index 1d5313b32e..6e409b9729 100644 --- a/mobile/lib/services/machine_learning/face_ml/face_ml_service.dart +++ b/mobile/lib/services/machine_learning/face_ml/face_ml_service.dart @@ -36,12 +36,12 @@ import 'package:photos/services/machine_learning/face_ml/face_detection/detectio import 'package:photos/services/machine_learning/face_ml/face_detection/face_detection_service.dart'; import 'package:photos/services/machine_learning/face_ml/face_embedding/face_embedding_service.dart'; import 'package:photos/services/machine_learning/face_ml/face_filtering/face_filtering_constants.dart'; -import 'package:photos/services/machine_learning/face_ml/face_ml_exceptions.dart'; import 'package:photos/services/machine_learning/face_ml/face_ml_result.dart'; import "package:photos/services/machine_learning/face_ml/person/person_service.dart"; import 'package:photos/services/machine_learning/file_ml/file_ml.dart'; import 'package:photos/services/machine_learning/file_ml/remote_fileml_service.dart'; import "package:photos/services/machine_learning/machine_learning_controller.dart"; +import 'package:photos/services/machine_learning/ml_exceptions.dart'; import "package:photos/services/search_service.dart"; import "package:photos/utils/file_util.dart"; import "package:photos/utils/image_ml_util.dart"; diff --git a/mobile/lib/services/machine_learning/face_ml/face_ml_exceptions.dart b/mobile/lib/services/machine_learning/ml_exceptions.dart similarity index 100% rename from mobile/lib/services/machine_learning/face_ml/face_ml_exceptions.dart rename to mobile/lib/services/machine_learning/ml_exceptions.dart