// // LocationServiceProtocol.swift // AutoCatCore // // Created by Selim Mustafaev on 31.07.2024. // Copyright © 2024 Selim Mustafaev. All rights reserved. // import Foundation public protocol LocationServiceProtocol { func getAddressForLocation(latitude: Double, longitude: Double) async throws -> String }