Atualizado

This commit is contained in:
2026-03-10 16:03:56 +00:00
parent 534a344b28
commit e8f64562d8
14 changed files with 336 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package com.example.bem;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Query;
public interface WeatherService {
@GET("v1/forecast?current_weather=true")
Call<WeatherResponse> getCurrentWeather(
@Query("latitude") double latitude,
@Query("longitude") double longitude);
}