From a304c24b32c0327436bbd8c2853e60668e161b42 Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero Date: Mon, 29 Dec 2025 00:41:52 +0100 Subject: Rename a lot of stuff, add Santiago real time --- src/Enmarcha.Backend/Services/IGeocodingService.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/Enmarcha.Backend/Services/IGeocodingService.cs (limited to 'src/Enmarcha.Backend/Services/IGeocodingService.cs') diff --git a/src/Enmarcha.Backend/Services/IGeocodingService.cs b/src/Enmarcha.Backend/Services/IGeocodingService.cs new file mode 100644 index 0000000..5c1b19e --- /dev/null +++ b/src/Enmarcha.Backend/Services/IGeocodingService.cs @@ -0,0 +1,9 @@ +using Enmarcha.Backend.Types.Planner; + +namespace Enmarcha.Backend.Services; + +public interface IGeocodingService +{ + Task> GetAutocompleteAsync(string query); + Task GetReverseGeocodeAsync(double lat, double lon); +} -- cgit v1.3