Rename the GetGeofeed Method to Async

This commit is contained in:
2024-01-18 16:15:41 -08:00
parent 3a56e2426e
commit e0189381f1
6 changed files with 5 additions and 75 deletions

View File

@@ -31,7 +31,7 @@ namespace AS1024.GeoFeed.Core.GeoFeedProviders
this.httpClientFactory = httpClientFactory;
}
public async Task<List<IPGeoFeed>> GetGeoFeedData()
public async Task<List<IPGeoFeed>> GetGeoFeedDataAsync()
{
List<IPGeoFeed> geoFeed = [];
using HttpClient client = httpClientFactory.CreateClient();