2024-01-13 13:05:37 +03:30
|
|
|
|
using Refit;
|
|
|
|
|
|
|
2024-04-17 12:24:47 +03:30
|
|
|
|
namespace Netina.WordPressDBConverter.Services.RestServices;
|
2024-01-13 13:05:37 +03:30
|
|
|
|
|
|
|
|
|
|
public class RestWrapper
|
|
|
|
|
|
{
|
|
|
|
|
|
private static RestWrapper? _instance;
|
|
|
|
|
|
public static RestWrapper Instance => _instance = _instance ?? new RestWrapper();
|
|
|
|
|
|
|
|
|
|
|
|
public ISeedRestApi SeedRestApi => RestService.For<ISeedRestApi>("http://localhost:32770/api/seed");
|
|
|
|
|
|
}
|