mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 22:06:39 +00:00
a7a645c7ab
add tests
8 lines
230 B
C#
8 lines
230 B
C#
using SatelliteProvider.Common.DTO;
|
|
|
|
namespace SatelliteProvider.Common.Interfaces;
|
|
|
|
public interface ISatelliteDownloader
|
|
{
|
|
Task GetTiles(GeoPoint geoPoint, double radiusM, int zoomLevel, CancellationToken token = default);
|
|
} |