6 lines
196 B
C#
6 lines
196 B
C#
namespace MangaReader.Core.HttpService;
|
|
|
|
public class HttpService(HttpClient httpClient) : IHttpService
|
|
{
|
|
public Task<string> GetStringAsync(string url) => httpClient.GetStringAsync(url);
|
|
} |