add read raw meteo data

This commit is contained in:
2025-10-28 23:21:42 +01:00
parent e0024cc257
commit b38e77218e
3 changed files with 16 additions and 7 deletions
+2 -2
View File
@@ -49,6 +49,6 @@ func (s *Service) UpdateElapsedMS(ctx context.Context, batchID, elapsedMS int) e
return nil
}
func (s *Service) GetMeteoData(params GetMeteoData) ([]MeteoData, error) {
return []MeteoData{}, nil
func (s *Service) GetMeteoData(ctx context.Context, params GetMeteoData) ([]MeteoData, error) {
return s.repo.GetMeteoData(ctx, params)
}