π§βπ»
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// AnalyzeView.swift | |
// | |
// Created by Arturo Carretero Calvo on 13/8/25. | |
// Copyright Β© 2025 ArtCC. All rights reserved. | |
// | |
import AIProxy | |
import PhotosUI | |
import SwiftUI |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import LocalAuthentication | |
@MainActor | |
protocol BiometricManagerProtocol: Sendable { | |
func biometricType() -> BiometricManager.BiometricType | |
func isBiometricAvailable() -> Bool | |
func authenticate(reason: String?) async throws -> Bool | |
func updateLoginReason(_ newReason: String) | |
} |